字符串中的 Join() 方法使用指定的分割符连接字符串数组的所有元素。在下面的示例中,我们有一个多行字符串,并将分割符设置为 "" - String.Join("", starray);示例以下是一个完整的示例 - 实时演示using System; namespace StringApplication { class StringProg { static void Main(string[] args) { string[] starray = new string[]{"Down the way nights are dark", "And the sun shines daily on the mountaintop", "I took ... 阅读更多
指针是一个变量,其值是另一个变量的地址。使用 ToString() 方法检索指针变量引用的已定位引用处存储的数据。示例以下是一个示例 - using System; namespace UnsafeCodeApplication { class Program { public static void Main() { unsafe { int var = 100; int* p = &var; Console.WriteLine("Data is: {0} " , var); Console.WriteLine("Data is: {0} " , p->ToString()); Console.WriteLine("Address is: {0} " , (int)p); } Console.ReadKey(); } } }输出以上将需要您设置不安全的命令行选项。设置后,将显示以下输出。Data is: 100 Data is: 100 Address is: 77678547
Read()Read() 读取标准输入流中的下一个字符。如果在控制台上按下一个键,则它将关闭。int a = Console.Read() Console.WriteLine(a);ReadLine()它从标准输入流中读取下一行字符。示例实时演示using System; class Program { static void Main() { int x = 10; Console.WriteLine(x); Console.Write("Press any key to continue... "); Console.ReadLine(); } }输出10 按任意键继续...
Const常量字段是无法修改的字段。在声明时,需要为其赋值。const int a = 5;Readonly只读字段在声明时初始化,也可以在构造函数中设置。让我们看一个在构造函数中初始化只读字段的示例 - 示例class Calculate { readonly int z; public Demo( ) { z = 20; } }