VB to C# Functions

后端 未结 14 1067
忘了有多久
忘了有多久 2020-12-02 06:51

Which are the equivalent of the following operators from VB.Net to C#?

  • UBound()
  • LBound()
  • IsNothing()
  • <
14条回答
  •  暖寄归人
    2020-12-02 07:27

    The space function is missing from everyone else's list:

    Space(16) -> new String(" ", 16)

提交回复
热议问题