在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1. 数组(引用类型):
声明数组: t[] intrgers; 初始化特定大小的数组: int[] integers = new int[3]; 为数组的每个元素赋值: int[] integers = new int[3] {1, 2, 3};
int[,] twoDim = new int[3, 3]; twoDim={{1,2,3},{2,3,4},{3,4,5}};
在初始化锯齿数组时,先设置该数组包含的行数,定义各行中元素个数的第二个括号设置为空,因为这类数组的每一行包含不同的元素数。之后,为每一行指定行中的元素个数: 1 int[][] jagged = new int[3][]; 2 jagged[0] = new int[2] { 1, 2 }; 3 jagged[1] = new int[3] { 1, 2, 3 }; 4 jagged[2] = new int[4] { 2, 3, 4, 5 }; 5 6 for (int i = 0; i < jagged.Length; i++) 7 { 8 for (int j = 0; j < jagged[i].Length; j++) 9 { 10 Console.WriteLine("Row: {0}, Element: {1}, Value: {2}", i, j, jagged[i][j]); 11 Console.ReadLine(); 12 } 13 }
2. 命名空间: using关键字的一个用途: 给类和命名空间指定别名。语法如下:using alias= NamespaceName; 注意:命名空间别名的修饰符是“::”。 using System; using Introduction = Wrox.ProCSharp.Basics; class Test { public static int Main() { Introduction::NamespaceExample NSEx = new Introduction::NamespaceExample(); Console.WriteLine(NSEx.GetNamespace()); return 0; } } namespace Wrox.ProCSharp.Basics { class NamespaceExample { public string GetNamespace() { return this.GetType().Namespace; } } } 3. Main() 方法:
编译 t2.cs 和 t3.cs,并指定将在 Test2 中找到 Main 方法:csc t2.cs t3.cs /main:Test2 Main() 方法的参数: using System; namespace wROX.ProCSharp.Basics { class AgrsExample { publicstaticint Main(string[] args) { for (int i = 0; i < args.Length; i++) { Console.WriteLine(args[i]); } Console.ReadLine(); return 0; } } } 在运行编译好的可执行文件时,可以在程序名的后面加上参数,例如:ArgsExample /a /b /c 则输出:/a /b /c
|
请发表评论