inherits.vb

来自「Code for VB.NET教程源码 很好的源码」· VB 代码 · 共 12 行

VB
12
字号
Imports System
Imports System.Web

' To compile: vbc /t:library /r:system.web.dll /r:system.dll Inherits.vb

Public Class MyApplication
  Inherits HttpApplication

  Public Function CurrentTime() As String
    Return DateTime.Now.ToString("r")
  End Function
End Class

⌨️ 快捷键说明

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