Console.WriteLine()

Dim x As Int32 = 128
Console.WriteLine(x) ' Variable '
Console.WriteLine(3) ' Integer '
Console.WriteLine(3.14159) ' Floating-point number '
Console.WriteLine("Hello, world") ' String '
Console.WriteLine(myObject) ' Outputs the value from calling myObject.ToString()

Console.WriteLine() 方法將列印給定的引數**,**並在末尾附加換行符。這將列印提供的任何物件,包括但不限於字串,整數,變數,浮點數。

當編寫未被各種 WriteLine 過載明確呼叫的物件時(也就是說,你正在使用期望值型別為 Object 的過載,WriteLine 將使用 .ToString() 方法生成實際寫入的 String。你的自定義物件應該 OverRide .ToString 方法並生成比預設實現(通常只寫完全限定型別名稱)更有意義的東西。