摘要: VB ProceduresA VB.NET procedure (aka sub for subroutine) is defined using the Sub / End Sub keywords. The procedure is invoked by using its name as a ... 阅读全文
posted @ 2015-06-17 00:37 xymum 阅读(131) 评论(0) 推荐(0) 编辑
摘要: VB FunctionsA VB.NET function is defined using the Function/ End Function keywords. The function is invoked by using it. As with subs the function nam... 阅读全文
posted @ 2015-06-17 00:13 xymum 阅读(131) 评论(0) 推荐(0) 编辑
摘要: VB ClassesClasses are defined in VB.NET using a separate VB code file. The code file name is the same as the class name.In VB.NET the class attributes... 阅读全文
posted @ 2015-06-17 00:07 xymum 阅读(167) 评论(0) 推荐(0) 编辑
摘要: VB ArraysArraysArray variables are defined in Visual Basic using the same notation as with simple variables but with parenthesis after the variable na... 阅读全文
posted @ 2015-06-17 00:05 xymum 阅读(264) 评论(0) 推荐(0) 编辑
摘要: ProcedureScope VariablesThese are variables declared within a procedure. Other procedures may not interact with them, either to read their value or ch... 阅读全文
posted @ 2015-06-17 00:03 xymum 阅读(127) 评论(0) 推荐(0) 编辑
摘要: Variable ScopeThe scope of a declared element determines where in a program the variable is visible to the code. This can refer to the namespace of th... 阅读全文
posted @ 2015-06-17 00:02 xymum 阅读(245) 评论(0) 推荐(0) 编辑
摘要: C#和VB.net的语法对比 最后更新 ( 2005-03-02 19:10 )VB.NET'Single line onlyRem Single line onlyC#// Single line/* Multipleline *//// XML comments on single line... 阅读全文
posted @ 2015-06-16 23:21 xymum 阅读(122) 评论(0) 推荐(0) 编辑