符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
项目结构:
成都创新互联主打移动网站、成都做网站、网站设计、网站改版、网络推广、网站维护、国际域名空间、等互联网信息服务,为各行业提供服务。在技术实力的保障下,我们为客户承诺稳定,放心的服务,根据网站的内容与功能再决定采用什么样的设计。最后,要实现符合网站需求的内容、功能与设计,我们还会规划稳定安全的技术方案做保障。
将Document类库生成的DLL文件放在ConsoleApplication2\ConsoleApplication2\bin\Debug文件夹下
-------------------------------------------------------------Document.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Document { public class Document { public string Name = "李四"; public string GetName(string name) { return name; } } }
-------------------------------------------------------------Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Reflection; using System.IO; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { //获取程序集 Assembly asb = Assembly.LoadFrom(Directory.GetCurrentDirectory() + "/Document.dll"); //获取程序集下面的Document类 Type document = asb.GetType("Document.Document"); //实例化Document类对象(有参数的话需要传递object参数) object docObj = Activator.CreateInstance(document); //获取Document类中的方法 MethodInfo mi = document.GetMethod("GetName"); //参数 object[] parameter = new object[] { "张三" }; Console.WriteLine(mi.Invoke(docObj, parameter).ToString());//输出方法的返回值:张三 //获取Document类中的属性 FieldInfo pi = document.GetField("Name"); Console.WriteLine(pi.GetValue(docObj));//输出方法的属性:李四 Console.ReadKey(); } } }