同名的两个类如果在不同的命名空间中,相互之间是不会混淆的。
一个名为TextHello的命名空间中创建一个名为Program的类,引用方法 TextHello.Program
我们常用的Console类存在于System命名空间中,这意味着它的全名为System.Console,但每次输入总显得麻烦,这时你可以用 using System ; 命令来限定要使用的命名空间。在写代码的时候只需要输入 Console即可,免去了总是输入System的麻烦。
C#求数组长度 数组名.Length
- namespace sorter
- {
- public class SelectionSorter //类名
- {
- private int min;
- public void Sort(int[] arr)
- {
- for (int i = 0; i < arr.Length - 1; ++i)
- {
- min = i;
- for (int j = i + 1; j < arr.Length; ++j)
- {
- if (arr[j] < arr[min])
- {
- min = j;
- }
- }
- int t = arr[min];
- arr[min] = arr[i];
- arr[i] = t;
- }
- }
- }
- class Program
- {
- static void Main(string[] args)
- {
- int[] arrInt = new int[] { 4, 2, 7, 1, 8, 3, 9, 0, 5, 6 };
- SelectionSorter selSor = new SelectionSorter(); //调用类时 需要清空原先的类
- selSor.Sort(arrInt);
- foreach (int i in arrInt) //提取数组中的整数
- {
- Console.WriteLine(i);
- }
- Console.ReadKey();
- }
- }
- }
int[] Sum = new int[50];
Random rd = new Random();///
// 先用for循环给数组取随机数.
for (int s = 0; s <= Sum.Length - 1; s++) // Sum.Length是数组的一个属性,Length代表数组的长度
{
Sum[s] = rd.Next(100);
}