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

📄 server.vb

📁 一个饭店管理系统
💻 VB
字号:
Imports System
Imports System.Runtime.Remoting
Imports System.Runtime.Remoting.Channels
Imports System.Runtime.Remoting.Channels.Tcp
Imports Microsoft.VisualBasic
'<Assembly:Version("1.0.0.0")> 
public module server
  Public sub main() 
  Dim  channel As TcpChannel = New TcpChannel(8000)
  ChannelServices.RegisterChannel(channel)
  RemotingConfiguration.RegisterWellKnownServiceType _
 (GetType(CoHello), "HelloDotNet",WellKnownObjectMode.Singleton)
  System.Console.WriteLine("Hit <enter> to exit...")
  System.Console.ReadLine(  )
  End sub
Public class CoHello
Inherits MarshalByRefObject 
  public Function SayHello(ByVal strName As String) As string
	dim msg as string
msg="Hi ! " + strName & ". 舧

⌨️ 快捷键说明

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