quote.vb

来自「asp.net技术内幕的书配源码」· VB 代码 · 共 23 行

VB
23
字号
Imports System

Namespace myComponents

Public Class Quote

  Dim myRand As New Random

  Public Function ShowQuote() As String
    Select myRand.Next( 3 )
      Case 0
        Return "Look before you leap"
      Case 1
        Return "Necessity is the mother of invention"
      Case 2
        Return "Life is full of risks"
    End Select
  End Function

End Class

End Namespace

⌨️ 快捷键说明

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