|
|||||||||||
Imports System Namespace Hello Class HelloWorld Overloads Shared Sub Main(ByVal args() As String) Dim name As String = "VB.NET" ‘See if an argument was passed from the command line If args.Length = 1 Then name = args(0) Console.WriteLine("Hello, " & name & "!") End Sub End Class End Namespace |
using System; namespace Hello { public class HelloWorld { public static void Main(string[] args) { string name = "C#"; // See if an argument was passed from the command line if (args.Length == 1) name = args[0]; Console.WriteLine("Hello, " + name + "!"); } } } |
||||||||||
|
|||||||||||
‘ Single line only Rem Single line only |
// Single line /* Multiple line */ /// XML comments on single line /** XML comments on multiple lines */ |
||||||||||
|
|||||||||||
Value Types Boolean Byte Char (example: "A"c) Short, Integer, Long Single, Double Decimal Date Reference Types Object String Dim x As Integer Console.WriteLine(x.GetType()) ‘ Prints System.Int32 Console.WriteLine(TypeName(x)) ‘ Prints Integer ‘ Type conversion Dim d As Single = 3.5 Dim i As Integer = CType(d, Integer) ‘ set to 4 (Banker‘s rounding) i = CInt(d) ‘ same result as CType i = Int(d) ‘ set to 3 (Int function truncates the decimal) |
Value Types bool byte, sbyte char (example: ‘A‘) short, ushort, int, uint, long, ulong float, double decimal DateTime (not a built-in C# type) Reference Types object string int x; Console.WriteLine(x.GetType()); // Prints System.Int32 Console.WriteLine(typeof(int)); // Prints System.Int32 // Type conversion float d = 3.5f; int i = (int)d; // set to 3 (truncates decimal) |
||||||||||
|
|||||||||||
Const MAX_STUDENTS As Integer = 25
‘ Can set to a const or var; may be initialized in a constructor ReadOnly MIN_DIAMETER As Single = 4.93 |
const int MAX_STUDENTS = 25;
// Can set to a const or var; may be initialized in a constructor readonly float MIN_DIAMETER = 4.93f; |
||||||||||
|
|||||||||||
Enum Action Start [Stop] ‘ Stop is a reserved word Rewind Forward End Enum Enum Status Flunk = 50 Pass = 70 Excel = 90 End Enum Dim a As Action = Action.Stop If a <> Action.Start Then _ Console.WriteLine(a.ToString & " is " & a) ‘ Prints "Stop is 1" Console.WriteLine(Status.Pass) ‘ Prints 70 Console.WriteLine(Status.Pass.ToString()) ‘ Prints Pass |
enum Action {Start, Stop, Rewind, Forward}; enum Status {Flunk = 50, Pass = 70, Excel = 90}; Action a = Action.Stop; if (a != Action.Start) Console.WriteLine(a + " is " + (int) a); // Prints "Stop is 1" Console.WriteLine((int) Status.Pass); // Prints 70 Console.WriteLine(Status.Pass); // Prints Pass |
||||||||||
|
|||||||||||
Comparison = < > <= >= <> Arithmetic + - * / Mod \ (integer division) ^ (raise to a power) Assignment = += -= *= /= \= ^= <<= >>= &= Bitwise And Or Not << >> Logical AndAlso OrElse And Or Xor Not Note: AndAlso and OrElse perform short-circuit logical evaluations String Concatenation & + |
Comparison == < > <= >= != Arithmetic + - * / % (mod) / (integer division if both operands are ints) Math.Pow(x, y) Assignment = += -= *= /= %= &= |= ^= <<= >>= ++ -- Bitwise & | ^ ~ << >> Logical && || & | ^ ! Note: && and || perform short-circuit logical evaluations String Concatenation + |
||||||||||
|
|||||||||||
greeting = IIf(age < 20, "What‘s up?", "Hello") ‘ One line doesn‘t require "End If", no "Else" If language = "VB.NET" Then langType = "verbose" ‘ Use : to put two commands on same line If x <> 100 And y < 5 Then x *= 5 : y *= 2 ‘ Preferred If x <> 100 And y < 5 Then x *= 5 y *= 2 End If ‘ or to break up any long single command use _ If whenYouHaveAReally < longLine And itNeedsToBeBrokenInto2 > Lines Then _ UseTheUnderscore(charToBreakItUp) ‘ If x > 5 Then x *= y ElseIf x = 5 Then x += y ElseIf x < 10 Then x -= y Else x /= y End If Select Case color ‘ Must be a primitive data type Case "pink", "red" r += 1 Case "blue" b += 1 Case "green" g += 1 Case Else other += 1 End Select |
greeting = age < 20 ? "What‘s up?" : "Hello"; if (x != 100 && y < 5) { // Multiple statements must be enclosed in {} x *= 5; y *= 2; } No need for _ or : since ; is used to terminate each statement. if (x > 5) x *= y; else if (x == 5) x += y; else if (x < 10) x -= y; else x /= y; switch (color) { // Must be integer or string case "pink": case "red": r++; break; // break is mandatory; no fall-through case "blue": b++; break; case "green": g++; break; default: other++; break; // break necessary on default } |
||||||||||
|
|||||||||||
‘ Array or collection looping Dim names As String() = {"Fred", "Sue", "Barney"} For Each s As String In names Console.WriteLine(s) Next ‘ Breaking out of loops Dim i As Integer = 0 While (True) If (i = 5) Then Exit While i += 1 End While |
Pre-test Loops:
// no "until" keyword while (c < 10) c++; Post-test Loop: // Array or collection looping string[] names = {"Fred", "Sue", "Barney"}; foreach (string s in names) Console.WriteLine(s); // Breaking out of loops int i = 0; while (true) { if (i == 5) break; i++; } |
||||||||||
|
|||||||||||
Dim nums() As Integer = {1, 2, 3} For i As Integer = 0 To nums.Length - 1 Console.WriteLine(nums(i)) Next ‘ 4 is the index of the last element, so it holds 5 elements Dim names(4) As String names(0) = "David" names(5) = "Bobby" ‘ Throws System.IndexOutOfRangeException ‘ Resize the array, keeping the existing values (Preserve is optional) ReDim Preserve names(6) Dim twoD(rows-1, cols-1) As Single twoD(2, 0) = 4.5 |
int[] nums = {1, 2, 3}; for (int i = 0; i < nums.Length; i++) Console.WriteLine(nums[i]); // 5 is the size of the array string[] names = new string[5]; names[0] = "David"; names[5] = "Bobby"; // Throws System.IndexOutOfRangeException // C# can‘t dynamically resize an array. Just copy into new array. string[] names2 = new string[7]; Array.Copy(names, names2, names.Length); // or names.CopyTo(names2, 0); float[,] twoD = new float[rows, cols]; twoD[2,0] = 4.5f; int[][] jagged = new int[3][] { new int[5], new int[2], new int[3] }; jagged[0][4] = 5; |
||||||||||
|
|||||||||||
‘ Pass by value (in, default), reference (in/out), and reference (out) Sub TestFunc(ByVal x As Integer, ByRef y As Integer, ByRef z As Integer) x += 1 y += 1 z = 5 End Sub Dim a = 1, b = 1, c As Integer ‘ c set to zero by default TestFunc(a, b, c) Console.WriteLine("{0} {1} {2}", a, b, c) ‘ 1 2 5 ‘ Accept variable number of arguments Function Sum(ByVal ParamArray nums As Integer()) As Integer Sum = 0 For Each i As Integer In nums Sum += i Next End Function ‘ Or use Return statement like C# ‘ Optional parameters must be listed last and must have a default value Sub SayHello(ByVal name As String, Optional ByVal prefix As String = "") Console.WriteLine("Greetings, " & prefix & " " & name) End Sub |
// Pass by value (in, default), reference (in/out), and reference (out) void TestFunc(int x, ref int y, out int z) { x++; y++; z = 5; }
int a = 1, b = 1, c; // c doesn‘t need initializing TestFunc(a, ref b, out c); Console.WriteLine("{0} {1} {2}", a, b, c); // 1 2 5 // Accept variable number of arguments int Sum(params int[] nums) { int sum = 0; foreach (int i in nums) sum += i; return sum; } int total = Sum(4, 3, 2, 1); // returns 10 /* C# doesn‘t support optional arguments/parameters. Just create two different versions of the same function. */ void SayHello(string name, string prefix) { Console.WriteLine("Greetings, " + prefix + " " + name); } |
||||||||||
|
|||||||||||
Special character constants vbCrLf, vbCr, vbLf, vbNewLine vbNullString vbTab vbBack vbFormFeed vbVerticalTab "" ‘ String concatenation (use & or +) Dim school As String = "Harding" & vbTab school = school & "University" ‘ school is "Harding (tab) University" ‘ Chars Dim letter As Char = school.Chars(0) ‘ letter is H letter = Convert.ToChar(65) ‘ letter is A letter = Chr(65) ‘ same thing Dim word() As Char = school.ToCharArray() ‘ word holds Harding ‘ No string literal operator Dim msg As String = "File is c:\temp\x.dat" ‘ String comparison Dim mascot As String = "Bisons" If (mascot = "Bisons") Then ‘ true If (mascot.Equals("Bisons")) Then ‘ true If (mascot.ToUpper().Equals("BISONS")) Then ‘ true If (mascot.CompareTo("Bisons") = 0) Then ‘ true Console.WriteLine(mascot.Substring(2, 3)) ‘ Prints "son" ‘ String matching If ("John 3:16" Like "Jo[Hh]? #:*") Then ‘true ‘ My birthday: Oct 12, 1973 Dim dt As New DateTime(1973, 10, 12) Dim s As String = "My birthday: " & dt.ToString("MMM dd, yyyy") Console.WriteLine(s) ‘ Mutable string Dim buffer As New System.Text.StringBuilder("two ") buffer.Append("three ") buffer.Insert(0, "one ") buffer.Replace("two", "TWO") Console.WriteLine(buffer) ‘ Prints "one TWO three" |
Escape sequences \n, \r \t \\ \" // String concatenation string school = "Harding\t"; school = school + "University"; // school is "Harding (tab) University" // Chars char letter = school[0]; // letter is H letter = Convert.ToChar(65); // letter is A letter = (char)65; // same thing char[] word = school.ToCharArray(); // word holds Harding // String literal string msg = @"File is c:\temp\x.dat"; // same as string msg = "File is c:\\temp\\x.dat"; // String comparison string mascot = "Bisons"; if (mascot == "Bisons") // true if (mascot.Equals("Bisons")) // true if (mascot.ToUpper().Equals("BISONS")) // true if (mascot.CompareTo("Bisons") == 0) // true Console.WriteLine(mascot.Substring(2, 3)); // Prints "son" // String matching // No Like equivalent - use regular expressions // My birthday: Oct 12, 1973 DateTime dt = new DateTime(1973, 10, 12); string s = "My birthday: " + dt.ToString("MMM dd, yyyy"); // Mutable string System.Text.StringBuilder buffer = new System.Text.StringBuilder("two "); buffer.Append("three "); buffer.Insert(0, "one "); buffer.Replace("two", "TWO"); Console.WriteLine(buffer); // Prints "one TWO three" |
||||||||||
|
|||||||||||
‘ Throw an exception Dim ex As New Exception("Something is really wrong.") Throw ex ‘ Catch an exception Try y = 0 x = 10 / y Catch ex As Exception When y = 0 ‘ Argument and When is optional Console.WriteLine(ex.Message) Finally Beep() End Try ‘ Deprecated unstructured error handling On Error GoTo MyErrorHandler ... MyErrorHandler: Console.WriteLine(Err.Description) |
// Throw an exception Exception up = new Exception("Something is really wrong."); throw up; // ha ha // Catch an exception try { y = 0; x = 10 / y; } catch (Exception ex) { // Argument is optional, no "When" keyword Console.WriteLine(ex.Message); } finally { // Requires reference to the Microsoft.VisualBasic.dll // assembly (pre .NET Framework v2.0) Microsoft.VisualBasic.Interaction.Beep(); } |
||||||||||
|
|||||||||||
Namespace Harding.Compsci.Graphics ... End Namespace ‘ or Namespace Harding Namespace Compsci Namespace Graphics ... End Namespace End Namespace End Namespace Imports Harding.Compsci.Graphics |
namespace Harding.Compsci.Graphics { ... } // or namespace Harding { namespace Compsci { namespace Graphics { ... } } } using Harding.Compsci.Graphics; |
||||||||||
|
|||||||||||
Accessibility keywords Public Private Friend Protected Protected Friend Shared ‘ Inheritance Class FootballGame Inherits Competition ... End Class ‘ Interface definition Interface IAlarmClock ... End Interface // Extending an interface Interface IAlarmClock Inherits IClock ... End Interface // Interface implementation Class WristWatch Implements IAlarmClock, ITimer ... End Class |
Accessibility keywords public private internal protected protected internal static // Inheritance class FootballGame : Competition { ... } // Interface definition interface IAlarmClock { ... } // Extending an interface interface IAlarmClock : IClock { ... } // Interface implementation class WristWatch : IAlarmClock, ITimer { ... } |
||||||||||
|
|||||||||||
Class SuperHero Private _powerLevel As Integer Public Sub New() _powerLevel = 0 End Sub Public Sub New(ByVal powerLevel As Integer) Me._powerLevel = powerLevel End Sub Protected Overrides Sub Finalize() ‘ Desctructor code to free unmanaged resources MyBase.Finalize() End Sub End Class |
class SuperHero { private int _powerLevel; public SuperHero() { _powerLevel = 0; } public SuperHero(int powerLevel) { this._powerLevel= powerLevel; } ~SuperHero() { // Destructor code to free unmanaged resources. // Implicitly creates a Finalize method } } |
||||||||||
|
|||||||||||
Dim hero As SuperHero = New SuperHero ‘ or Dim hero As New SuperHero With hero .Name = "SpamMan" .PowerLevel = 3 End With hero.Defend("Laura Jones") hero.Rest() ‘ Calling Shared method ‘ or SuperHero.Rest() Dim hero2 As SuperHero = hero ‘ Both reference the same object hero2.Name = "WormWoman" Console.WriteLine(hero.Name) ‘ Prints WormWoman hero = Nothing ‘ Free the object If hero IsNothing Then _ hero = New SuperHero Dim obj As Object = New SuperHero If TypeOf obj Is SuperHero Then _ Console.WriteLine("Is a SuperHero object.") |
SuperHero hero = new SuperHero(); // No "With" construct hero.Name = "SpamMan"; hero.PowerLevel = 3; hero.Defend("Laura Jones"); SuperHero.Rest(); // Calling static method SuperHero hero2 = hero; // Both reference the same object hero2.Name = "WormWoman"; Console.WriteLine(hero.Name); // Prints WormWoman hero = null ; // Free the object if (hero == null) hero = new SuperHero(); Object obj = new SuperHero(); if (obj is SuperHero) Console.WriteLine("Is a SuperHero object."); |
||||||||||
|
|||||||||||
Structure StudentRecord Public name As String Public gpa As Single Public Sub New(ByVal name As String, ByVal gpa As Single) Me.name = name Me.gpa = gpa End Sub End Structure Dim stu As StudentRecord = New StudentRecord("Bob", 3.5) Dim stu2 As StudentRecord = stu |
struct StudentRecord { public string name; public float gpa; public StudentRecord(string name, float gpa) { this.name = name; this.gpa = gpa; } } StudentRecord stu = new StudentRecord("Bob", 3.5f); StudentRecord stu2 = stu; |
||||||||||
|
|||||||||||
Private _size As Integer Public Property Size() As Integer Get Return _size End Get Set (ByVal Value As Integer) If Value < 0 Then _size = 0 Else _size = Value End If End Set End Property foo.Size += 1 |
private int _size; public int Size { get { return _size; } set { if (value < 0) _size = 0; else _size = value; } } foo.Size++; |
||||||||||
|
|||||||||||
Delegate Sub MsgArrivedEventHandler(ByVal message As String) Event MsgArrivedEvent As MsgArrivedEventHandler ‘ or to define an event which declares a delegate implicitly Event MsgArrivedEvent(ByVal message As String) AddHandler MsgArrivedEvent, AddressOf My_MsgArrivedCallback ‘ Won‘t throw an exception if obj is Nothing RaiseEvent MsgArrivedEvent("Test message") RemoveHandler MsgArrivedEvent, AddressOf My_MsgArrivedCallback Imports System.Windows.Forms Dim WithEvents MyButton As Button ‘ WithEvents can‘t be used on local variable MyButton = New Button Private Sub MyButton_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles MyButton.Click MessageBox.Show(Me, "Button was clicked", "Info", _ MessageBoxButtons.OK, MessageBoxIcon.Information) End Sub |
delegate void MsgArrivedEventHandler(string message); event MsgArrivedEventHandler MsgArrivedEvent; // Delegates must be used with events in C# using System.Windows.Forms; Button MyButton = new Button(); MyButton.Click += new System.EventHandler(MyButton_Click); private void MyButton_Click(object sender, System.EventArgs e) { MessageBox.Show(this, "Button was clicked", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information); } |
||||||||||
|
|||||||||||
Console.Write("What‘s your name? ") Dim name As String = Console.ReadLine() Console.Write("How old are you? ") Dim age As Integer = Val(Console.ReadLine()) Console.WriteLine("{0} is {1} years old.", name, age) ‘ or Console.WriteLine(name & " is " & age & " years old.") Dim c As Integer c = Console.Read() ‘ Read single char Console.WriteLine(c) ‘ Prints 65 if user enters "A" |
Console.Write("What‘s your name? "); string name = Console.ReadLine(); Console.Write("How old are you? "); int age = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("{0} is {1} years old.", name, age); // or Console.WriteLine(name + " is " + age + " years old."); int c = Console.Read(); // Read single char Console.WriteLine(c); // Prints 65 if user enters "A" |
||||||||||
|
|||||||||||
Imports System.IO ‘ Write out to text file Dim writer As StreamWriter = File.CreateText("c:\myfile.txt") writer.WriteLine("Out to file.") writer.Close() ‘ Read all lines from text file Dim reader As StreamReader = File.OpenText("c:\myfile.txt") Dim line As String = reader.ReadLine() While Not line Is Nothing Console.WriteLine(line) line = reader.ReadLine() End While reader.Close() ‘ Write out to binary file Dim str As String = "Text data" Dim num As Integer = 123 Dim binWriter As New BinaryWriter(File.OpenWrite("c:\myfile.dat")) binWriter.Write(str) binWriter.Write(num) binWriter.Close() ‘ Read from binary file Dim binReader As New BinaryReader(File.OpenRead("c:\myfile.dat")) str = binReader.ReadString() num = binReader.ReadInt32() binReader.Close() |
using System.IO; // Write out to text file StreamWriter writer = File.CreateText("c:\\myfile.txt"); writer.WriteLine("Out to file."); writer.Close(); // Read all lines from text file StreamReader reader = File.OpenText("c:\\myfile.txt"); string line = reader.ReadLine(); while (line != null) { Console.WriteLine(line); line = reader.ReadLine(); } reader.Close(); // Write out to binary file string str = "Text data"; int num = 123; BinaryWriter binWriter = new BinaryWriter(File.OpenWrite("c:\\myfile.dat")); binWriter.Write(str); binWriter.Write(num); binWriter.Close(); // Read from binary file BinaryReader binReader = new BinaryReader(File.OpenRead("c:\\myfile.dat")); str = binReader.ReadString(); num = binReader.ReadInt32(); binReader.Close(); |
VB.NET and C# 差异
时间: 2024-10-03 14:56:33
VB.NET and C# 差异的相关文章
C#匿名类型与VB匿名类型及其差异
一.C#中的匿名类型 匿名类型是C#3.0(framework3.5)中引入的一个新特性.匿名类型顾名思义,就是没有类型名称的一种对象,其直接从object继承 C#的匿名类型有两种方式定义: //1.直接声明成员,并初始化 Func<int, int> fun = x => x + 1; var ann1 = new { A = "Str", B = new Object(), C = fun //C#中可以使用委托,但是不能把一个拉姆达表达式直接赋值给成员,例如C
vb6转vb.net
一直在用vb6写软件,但最近系统要做web版,但之前的业务规则全在代码中写死了,没用使用存贮过程,如果在web端重写规则,则工作量太大,项目时间也不允许,只好把业务规则转到vb.net中.现在的vb.net版本已不支持从vb6转入,不过可以直接把业务规则复制到新的vb.net中,差异很小,基本改改就行.转换过程中以下几点要特别注意: 1.vb6中过程调用可以不用括号包围参数,如 add a,b这样是合法的,但vb.net中不支持这种写法,必须是add(a,b)这样变动. 2.vb6中支持感叹号(
VB.NET视频总结
VB.NET是我们接触到的另一种应用程序开发平台,这次的视频学习知识了解一些基本的概念,为今后的学习奠定基础. 相对来说,这部分的视频还是不太容易理解的.其主要原因是,讲师是台湾人士,语言上有很大的差异,一开始的时候犹如听天书.但是随着学习的深入,慢慢的也就适应了.然后就大都能够听明白了,他们讲的内容其实大部分是我们已经接触过的. 第一部分都是讲.NET的基础知识,为我们更近一步的学习奠定基础,这部分无非就是它的概念.发展等,还有就是它所包含的一些基本物件,跟Vb的一些知识还是有一定的相似的.然
VB.NET中的除法运算符 与 C#中的除法运算符
VB.NET中的除法运算符有两个:/(浮点除法).\(整数除法) C#中的除法运算符只有一个:/(除法) VB.NET中的除法运算符与C#中的除法运算符存在很大的差异,使用时注意区分. 关于VB.NET中的除法运算符的介绍(摘自MSDN): /(浮点除法):将两个数相除并返回以浮点数表示的结果. 所得结果的数据类型取决于操作数的类型. 下表显示如何确定结果的数据类型. 操作数数据类型 结果数据类型 两个表达式都是整数数据类型(SByte.Byte.Short.UShort.Integer.UIn
VB.NET入门基础
众所周知,Visual Basic.NET是由Visual Basic发展而来,这两者之间的升级使得Visual Basic语言发生了革命性的变革,使得由基于对象编程的Visual Basic过渡到了全然面向对象的Visual Basic.NET.这也使得VisualBasic.NET更加难以掌握,可是原来VB中的一些使用方法依旧延续了下来,本篇博客不讨论它们之间的使用方法,也不讨论两种语言的异同,仅仅介绍VB.NET的基础内容. 废话不多说,先来一张图概述VB.NET的基本内容. 本篇博客将V
Lua和Javascript差异对比
Lua模拟器js方案 1.语法级模拟lua与js语言差异 1.1注释 js 为//,lua为--. 1.2变量js利用val来声明全局变量不存在局部变量,lua则不需要直接定位则为全局变量,local声明则为局部变量. 1.3运算符js + - * / % ++ --= += -= *= /= %=支持字符串 +txt1 = "what a very";txt2 = "nice day";txt3 =txt1 " " +txt2;打印txt3输出
ORM框架-VB/C#.Net实体代码生成工具(EntitysCodeGenerate)【ECG】4.6
摘要:VB/C#.Net实体代码生成工具(EntitysCodeGenerate)[ECG]是一款专门为.Net数据库程序开发量身定做的(ORM框架)代码生成工具,所生成的程序代码基于OO.ADO.NET.分层架构.ORM及反射+工厂设计模式等.支持.Net1.1及以上版本,可用于Oracle.SqlServer.Sybase.DB2.MySQL.Access.SQLite.PostgreSQL.DM(达梦).PowerDesigner文件.Informix.Firebird.MaxDB.Exc
VB.NET &; Visual Basic
当看到VB.NET者这本书籍的时候,翻开目录唯一的感受就是:这不和VB一样吗?到底有什么区别呢? 1)版本: 重新回顾VB,可以发现其实他是Microsoft退出的基于Windows操作系统环境下的软件开发工具,是一种功能强大的高级程序设计语言. Visual指的是GUI(graphical userinterfaces)的方法.使用这种方法进行程序设计时,用户只需根据界面设计的要求,将预先建立的对象添加到屏幕上,设置他们的各种属性. Basic指的是Basic语言,VB是BASIC语言的进一步
VB中,叹号“!”和“.”的区别
学生信息管理系统中,有这样一条代码 [vb] view plaincopyprint? <span style="font-family:KaiTi_GB2312;font-size:18px;"><strong> txtSQL = "select * from student_Info where Class_No = '" & comboClassno.Text & "'" Set mrc = E