📄 client.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 + -