基本信息
源码名称:C#,利用反射动态创建对象
源码大小:0.64M
文件格式:.rar
开发语言:C#
更新时间:2023-04-14
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C#,利用反射动态创建对象
文件清单
└── 动态创建对象
├── ComponentPlugInDemo
│ ├── bin
│ │ └── Debug
│ │ ├── ComponentPlugInDemo.exe
│ │ ├── ComponentPlugInDemo.pdb
│ │ ├── ComponentPlugInDemo.vshost.exe
│ │ ├── NodeComponentInterfaceLibrary.dll
│ │ ├── NodeComponentInterfaceLibrary.pdb
│ │ └── plugin
│ │ ├── NodeComponent1.dll
│ │ └── NodeComponent2.dll
│ ├── ComponentPlugInDemo.csproj
│ ├── ComponentPlugInDemo.csproj.user
│ ├── frmMain.cs
│ ├── frmMain.Designer.cs
│ ├── frmMain.resx
│ ├── obj
│ │ ├── ComponentPlugInDemo.csproj.FileListAbsolute.txt
│ │ ├── ComponentPlugInDemo.csproj.FileList.txt
│ │ └── Debug
│ │ ├── ComponentPlugInDemo.csproj.GenerateResource.Cache
│ │ ├── ComponentPlugInDemo.exe
│ │ ├── ComponentPlugInDemo.frmMain.resources
│ │ ├── ComponentPlugInDemo.pdb
│ │ ├── ComponentPlugInDemo.Properties.Resources.resources
│ │ ├── Refactor
│ │ └── TempPE
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── ComponentPlugIn.sln
├── ComponentPlugIn.suo
├── NodeComponent1
│ ├── bin
│ │ └── Debug
│ │ ├── NodeComponent1.dll
│ │ ├── NodeComponent1.pdb
│ │ ├── NodeComponentInterfaceLibrary.dll
│ │ └── NodeComponentInterfaceLibrary.pdb
│ ├── frmNode.cs
│ ├── frmNode.Designer.cs
│ ├── frmNode.resx
│ ├── NodeComponent1.csproj
│ ├── NodeInfo.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── NodeComponent1.csproj.GenerateResource.Cache
│ │ │ ├── NodeComponent1.dll
│ │ │ ├── NodeComponent1.frmNode.resources
│ │ │ ├── NodeComponent1.pdb
│ │ │ ├── NodeComponent1.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── NodeComponent1.csproj.FileListAbsolute.txt
│ │ └── NodeComponent1.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ └── Resources
│ ├── Component1Icon.ico
│ └── Component1SelectedIcon.ico
├── NodeComponent2
│ ├── bin
│ │ └── Debug
│ │ ├── NodeComponent2.dll
│ │ ├── NodeComponent2.pdb
│ │ ├── NodeComponentInterfaceLibrary.dll
│ │ └── NodeComponentInterfaceLibrary.pdb
│ ├── frmNode.cs
│ ├── frmNode.Designer.cs
│ ├── frmNode.resx
│ ├── NodeComponent1.sln
│ ├── NodeComponent1.suo
│ ├── NodeComponent2.csproj
│ ├── NodeInfo.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── NodeComponent1.csproj.GenerateResource.Cache
│ │ │ ├── NodeComponent1.frmNode.resources
│ │ │ ├── NodeComponent1.Properties.Resources.resources
│ │ │ ├── NodeComponent2.csproj.GenerateResource.Cache
│ │ │ ├── NodeComponent2.dll
│ │ │ ├── NodeComponent2.frmNode.resources
│ │ │ ├── NodeComponent2.pdb
│ │ │ ├── NodeComponent2.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── NodeComponent1.csproj.FileList.txt
│ │ ├── NodeComponent2.csproj.FileListAbsolute.txt
│ │ └── NodeComponent2.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ └── Resources
│ ├── Component1Icon.ico
│ └── Component1SelectedIcon.ico
└── NodeComponentInterfaceLibrary
├── bin
│ └── Debug
│ ├── NodeComponentInterfaceLibrary.dll
│ └── NodeComponentInterfaceLibrary.pdb
├── INodeComponentInterface.cs
├── NodeComponentInterfaceLibrary.csproj
├── obj
│ ├── Debug
│ │ ├── NodeComponentInterfaceLibrary.csproj.GenerateResource.Cache
│ │ ├── NodeComponentInterfaceLibrary.dll
│ │ ├── NodeComponentInterfaceLibrary.pdb
│ │ ├── NodeComponentInterfaceLibrary.Properties.Resources.resources
│ │ ├── Refactor
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── NodeComponentInterfaceLibrary.csproj.FileListAbsolute.txt
│ └── NodeComponentInterfaceLibrary.csproj.FileList.txt
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ └── Resources.resx
└── Resources
└── Image1.gif
37 directories, 93 files
C#,利用反射动态创建对象
文件清单
└── 动态创建对象
├── ComponentPlugInDemo
│ ├── bin
│ │ └── Debug
│ │ ├── ComponentPlugInDemo.exe
│ │ ├── ComponentPlugInDemo.pdb
│ │ ├── ComponentPlugInDemo.vshost.exe
│ │ ├── NodeComponentInterfaceLibrary.dll
│ │ ├── NodeComponentInterfaceLibrary.pdb
│ │ └── plugin
│ │ ├── NodeComponent1.dll
│ │ └── NodeComponent2.dll
│ ├── ComponentPlugInDemo.csproj
│ ├── ComponentPlugInDemo.csproj.user
│ ├── frmMain.cs
│ ├── frmMain.Designer.cs
│ ├── frmMain.resx
│ ├── obj
│ │ ├── ComponentPlugInDemo.csproj.FileListAbsolute.txt
│ │ ├── ComponentPlugInDemo.csproj.FileList.txt
│ │ └── Debug
│ │ ├── ComponentPlugInDemo.csproj.GenerateResource.Cache
│ │ ├── ComponentPlugInDemo.exe
│ │ ├── ComponentPlugInDemo.frmMain.resources
│ │ ├── ComponentPlugInDemo.pdb
│ │ ├── ComponentPlugInDemo.Properties.Resources.resources
│ │ ├── Refactor
│ │ └── TempPE
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── ComponentPlugIn.sln
├── ComponentPlugIn.suo
├── NodeComponent1
│ ├── bin
│ │ └── Debug
│ │ ├── NodeComponent1.dll
│ │ ├── NodeComponent1.pdb
│ │ ├── NodeComponentInterfaceLibrary.dll
│ │ └── NodeComponentInterfaceLibrary.pdb
│ ├── frmNode.cs
│ ├── frmNode.Designer.cs
│ ├── frmNode.resx
│ ├── NodeComponent1.csproj
│ ├── NodeInfo.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── NodeComponent1.csproj.GenerateResource.Cache
│ │ │ ├── NodeComponent1.dll
│ │ │ ├── NodeComponent1.frmNode.resources
│ │ │ ├── NodeComponent1.pdb
│ │ │ ├── NodeComponent1.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── NodeComponent1.csproj.FileListAbsolute.txt
│ │ └── NodeComponent1.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ └── Resources
│ ├── Component1Icon.ico
│ └── Component1SelectedIcon.ico
├── NodeComponent2
│ ├── bin
│ │ └── Debug
│ │ ├── NodeComponent2.dll
│ │ ├── NodeComponent2.pdb
│ │ ├── NodeComponentInterfaceLibrary.dll
│ │ └── NodeComponentInterfaceLibrary.pdb
│ ├── frmNode.cs
│ ├── frmNode.Designer.cs
│ ├── frmNode.resx
│ ├── NodeComponent1.sln
│ ├── NodeComponent1.suo
│ ├── NodeComponent2.csproj
│ ├── NodeInfo.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── NodeComponent1.csproj.GenerateResource.Cache
│ │ │ ├── NodeComponent1.frmNode.resources
│ │ │ ├── NodeComponent1.Properties.Resources.resources
│ │ │ ├── NodeComponent2.csproj.GenerateResource.Cache
│ │ │ ├── NodeComponent2.dll
│ │ │ ├── NodeComponent2.frmNode.resources
│ │ │ ├── NodeComponent2.pdb
│ │ │ ├── NodeComponent2.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── NodeComponent1.csproj.FileList.txt
│ │ ├── NodeComponent2.csproj.FileListAbsolute.txt
│ │ └── NodeComponent2.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ └── Resources
│ ├── Component1Icon.ico
│ └── Component1SelectedIcon.ico
└── NodeComponentInterfaceLibrary
├── bin
│ └── Debug
│ ├── NodeComponentInterfaceLibrary.dll
│ └── NodeComponentInterfaceLibrary.pdb
├── INodeComponentInterface.cs
├── NodeComponentInterfaceLibrary.csproj
├── obj
│ ├── Debug
│ │ ├── NodeComponentInterfaceLibrary.csproj.GenerateResource.Cache
│ │ ├── NodeComponentInterfaceLibrary.dll
│ │ ├── NodeComponentInterfaceLibrary.pdb
│ │ ├── NodeComponentInterfaceLibrary.Properties.Resources.resources
│ │ ├── Refactor
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── NodeComponentInterfaceLibrary.csproj.FileListAbsolute.txt
│ └── NodeComponentInterfaceLibrary.csproj.FileList.txt
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ └── Resources.resx
└── Resources
└── Image1.gif
37 directories, 93 files