⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 client.vb

📁 一个饭店管理系统
💻 VB
字号:
Imports System
Imports System.Reflection
Module MyClient
Sub Main()
	Dim a As Reflection.Assembly = Reflection.Assembly.LoadFrom("C:\\MyDLL.dll")
	' Get the type names from the assembly.
	'Dim Ts as Type()=a.GetTypes(0)
	Dim Hello As Type = a.GetTypes(0)
	Dim SayHello As MethodInfo
	
	SayHello = Hello.GetMethod("SayHello")

   'Dim MyObj As New Hello()
    Dim strSomeBody As String
    Console.WriteLine("叫块

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -