博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vb.net学习笔记
阅读量:5094 次
发布时间:2019-06-13

本文共 2055 字,大约阅读时间需要 6 分钟。

VB.Net学习地址

VB.Net的集成开发环境(IDE)

  • Visual Studio 2013(VS)

    一个VB.Net程序主要由以下几部分组成:

  • 命名空间声明 Namespace declaration
  • 一个类或模块 A class or module
  • 一个或多个程序 One or more procedures
  • 变量 Variables
  • 主过程 The Main procedure
  • 语句和表达式 Statements & Expressions
  • 注释 Comments

打印单词“Hello World”

Imports SystemModule Module1   'This program will display Hello World    Sub Main()      Console.WriteLine("Hello World")      Console.ReadKey()   End SubEnd Module

Rectangle类的实现

Imports SystemPublic Class Rectangle    Private length As Double    Private width As Double    'Public methods    Public Sub AcceptDetails()        length = 4.5        width = 3.5    End Sub    Public Function GetArea() As Double        GetArea = length * width    End Function    Public Sub Display()        Console.WriteLine("Length: {0}", length)        Console.WriteLine("Width: {0}", width)        Console.WriteLine("Area: {0}", GetArea())    End Sub    Shared Sub Main()        Dim r As New Rectangle()        r.Acceptdetails()        r.Display()        Console.ReadLine()    End SubEnd Class

接受来自用户的值

Module variablesNdataypes   Sub Main()      Dim message As String      Console.Write("Enter message: ")      message = Console.ReadLine      Console.WriteLine()      Console.WriteLine("Your Message: {0}", message)      Console.ReadLine()   End SubEnd Module

声明常量

Module constantsNenum   Sub Main()      Const PI = 3.14149      Dim radius, area As Single      radius = 7      area = PI * radius * radius      Console.WriteLine("Area = " & Str(area))      Console.ReadKey()   End SubEnd Module

声明枚举

Module constantsNenum   Enum Colors      red = 1      orange = 2      yellow = 3      green = 4      azure = 5      blue = 6      violet = 7   End Enum   Sub Main()      Console.WriteLine("The Color Red is : " & Colors.red)      Console.WriteLine("The Color Yellow is : " & Colors.yellow)      Console.WriteLine("The Color Blue is : " & Colors.blue)      Console.WriteLine("The Color Green is : " & Colors.green)      Console.ReadKey()   End SubEnd Module

转载于:https://www.cnblogs.com/1148510216yong/p/9387570.html

你可能感兴趣的文章
iOS 关于布局问题的一些认识
查看>>
云瓣影音网站&&微信端(已开源)
查看>>
C++入门篇十二
查看>>
冲刺周期二--站立会议03
查看>>
UITableViewCell高度自适应变化
查看>>
python 类变量与实例变量,可变对象与不可变对象的实践
查看>>
下载devc++和codeblocks记录
查看>>
C++ 修改 Windows Service【转】
查看>>
串口接线
查看>>
python_paramiko模块
查看>>
JavaScript基础---语言基础(4)
查看>>
移动端——论使用图片撑出模拟背景所带来的好处(主要解决图片之上是一些动态变化的内容,图片的效果难以使用程序来实现)...
查看>>
打算找工作了。
查看>>
基于Extjs的web表单设计器
查看>>
MAPZONE GIS SDK接入Openlayers3之二——空间参考扩展
查看>>
C#一个FTP操作封装类FTPHelper
查看>>
更换yum源
查看>>
上一页 下一页
查看>>
Linux运维基础入门(二):网络基础知识梳理02
查看>>
你所不知道的 CSS 阴影技巧与细节
查看>>