网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > VB.net > 正文
用.net动态创建类的实例
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/15
下载{$ArticleTitle}原创论文样式
As CompilerResults = provider.CompileAssemblyFromFile(cp, _ 
sourceName) 

If cr.Errors.Count > 0 Then 
'' 显示编译错误 
Console.WriteLine("编译错误 {0} 编译成 {1}", _ 
sourceName, cr.PathToAssembly) 

Dim ce As CompilerError 
For Each ce In cr.Errors 
Console.WriteLine(" {0}", ce.ToString()) 
Console.WriteLine() 
Next ce 
Else 
'' 显示编译成功的消息 
Console.WriteLine("原文件 {0} 编译成 {1} 成功完成.", _ 
sourceName, cr.PathToAssembly) 
End If 

'' 返回编译结果 
If cr.Errors.Count > 0 Then 
compileOk = False 
Else 
compileOk = True 
End If 
End If 
Return compileOk 

End Function 


2.编译DLL,并动态创建类的实例。(这里类的原文件是Class1.vb文件,放在WebSite的App_Code文件夹中了,实际使用时可以放在任意物理位置。) 

Dim strSourceFileName As String = Server.MapPath("~/App_Code/Class1.vb") ''类文件的全路径 
Dim strDllPath As String = Server.MapPath("~/App_Code") ''编译后的DLL文件存放的位置 
Dim strDllName As String = "" ''DLL的全路径(返回值) 
CompileExecutable(strSourceFileName, strDllPath, strDllName) ''编译原文件为DLL文件 

Dim a As [Assembly] = [Assembly].LoadFrom(strDllName) ''加载DLL 
Dim myType As System.Type = a.GetType("Class1") ''获得Class1的Type 
Dim obj As Object = Activator.CreateInstance(myType) ''获得Class1的实例 
3.Class1.vb原文件 
Public Class Class1Class Class1 
Public i As Integer 
End Class 
  • 上一篇资讯: vb.net动态控件数组
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号