找到 2628 篇文章 关于 C#
408 次浏览
Array 类是 C# 中所有数组的基类。它在 System 命名空间中定义。以下是 C# 中 Array 类的方 法 −序号方 法 & 描述1Clear将 Array 中的一系列元素设置为零、false 或 null,具体取决于元素类型。2Copy(Array, Array, Int32)从 Array 中复制一系列元素(从第一个元素开始并超出),并将它们粘贴到另一个 Array 中(从第一个元素开始)。长度指定为 32 位整数。3CopyTo(Array, Int32)将当前一维 Array 的所有元素复制到指定的 ... 阅读更多
205 次浏览
要访问矩形数组中的元素,您只需设置要获取元素的索引即可。多维数组也称为矩形数组 −a[0, 1]; // 第二个元素以下是一个示例,展示了如何在 C# 中使用矩形数组并访问元素 −示例using System; namespace Demo { class Program { static void Main(string[] args) { int[, ] a = new int[3, 3]; a[0, 0]= 10; a[0, 1]= 20; ... 阅读更多
2K+ 次浏览
要将大写转换为小写,请在 C# 中使用 ToLower() 方 法。假设您的字符串为 −str = "TIM";要将上述大写字符串转换为小写,请使用 ToLower() 方 法 −Console.WriteLine("Converted to LowerCase : {0}", str.ToLower());以下是 C# 中转换字符大小写的代码 −示例using System; using System.Collections.Generic; using System.Text; namespace Demo { class MyApplication { static void Main(string[] args) { string str; str = "TIM"; Console.WriteLine("UpperCase : {0}", str); // 转换为小写 Console.WriteLine("Converted to LowerCase : {0}", str.ToLower()); Console.ReadLine(); } } }
3K+ 次浏览
值参数值参数将参数的实际值复制到函数的形式参数中。在这种情况下,对函数内部参数所做的更改不会影响参数。这是向方 法传递参数的默认机制。在这种机制中,当调用方 法时,会为每个值参数创建一个新的存储位置。实际参数的值被复制到其中。因此,对方 法内部参数所做的更改不会影响参数。引用参数引用参数是对内存位置的引用... 阅读更多
2K+ 次浏览
要将小写转换为大写,请在 C# 中使用 ToUpper() 方 法。假设您的字符串为 −str = "david";要将上述小写字符串转换为大写,请使用 ToUpper() 方 法 −Console.WriteLine("Converted to UpperCase : {0}", str.ToUpper());以下是 C# 中转换字符大小写的代码 −示例using System; using System.Collections.Generic; using System.Text; namespace Demo { class MyApplication { static void Main(string[] args) { string str; str = "david"; Console.WriteLine("LowerCase : {0}", str); // 转换为大写 Console.WriteLine("Converted to UpperCase : {0}", str.ToUpper()); Console.ReadLine(); } } }
248 次浏览
要访问多维数组中的元素,只需添加要访问元素的索引,例如 −a[2,1]上面从第 3 行和第 2 列访问元素,即我们 [3,4] 数组中所示的元素 3 −0 0 1 2 2 4 3 6让我们看看我们讨论的内容并从二维数组中访问元素 −示例using System; namespace Program { class Demo { static void Main(string[] args) { int[,] a = new int[4, 2] {{0,0}, {1,2}, {2,4}, {3,6} }; int i, j; for (i = 0; i < 4; i++) { for (j = 0; j < 2; j++) { Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i,j]); } } // 访问元素 Console.WriteLine(a[2,1]); Console.ReadKey(); } } }
661 次浏览
锯齿数组是数组的数组。要访问其中的元素,只需提及该特定数组的索引即可。这里,我们有一个包含 5 个整数数组的锯齿数组 −int[][] a = new int[][]{new int[]{0, 0}, new int[]{1, 2}, new int[]{2, 4}, new int[]{ 3, 6 }, new int[]{ 4, 8 } };假设您需要访问第 3 个整数数组中的一个元素,为此 −a[2][1]上面,我们访问了锯齿数组中第 3 个数组的第一个元素。让我们看看完整的代码 −示例using System; namespace Demo { class Program { ... 阅读更多
383 次浏览
C# 异常由类表示。C# 中的异常类主要直接或间接地派生自 System.Exception 类。您也可以定义自己的异常。用户定义的异常类派生自 Exception 类。以下是一个示例 −示例using System; namespace UserDefinedException { class TestTemperature { static void Main(string[] args) { Temperature temp = new Temperature(); try { temp.showTemp(); } catch(TempIsZeroException e) { Console.WriteLine("TempIsZeroException: {0}", e.Message); ... 阅读更多
180 次浏览
对于对象序列化,您需要参考以下代码。这里,我们使用了 BinaryFormatter.Serialize (stream, reference) 方 法来序列化我们的示例对象。我们在这里设置了一个构造方 法 −public Employee(int id, string name, int salary) { this.id = id; this.name = name; this.salary = salary; }现在设置文件流 −FileStream fStream = new FileStream("d:ew.txt", FileMode.OpenOrCreate); BinaryFormatter bFormat = new BinaryFormatter();Employee 类的对象 −Employee emp = new Employee(001, "Jim", 30000); bFormat.Serialize(fStream, emp);