找到 2628 篇文章 关于 C#
81 次查看
Values 属性获取包含 Hashtable 中值的 ICollection。声明 Hashtable 集合 - Hashtable ht = new Hashtable();现在添加值 ht.Add("One", "Henry"); ht.Add("Two", "Kevin"); ht.Add("Three", "David");要从 Hashtable 显示值,以下代码 - 示例 实时演示using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { Hashtable ht = new Hashtable(); ht.Add("One", "Henry"); ht.Add("Two", "Kevin"); ht.Add("Three", "David"); // 显示值 foreach (string value in ht.Values) { Console.WriteLine(value); } Console.ReadKey(); } } }输出David Henry Kevin
776 次查看
使用 new 关键字创建数组的实例 - int [] a = new int[5];new 运算符用于创建对象或实例化对象。在此示例中,使用 new 为类创建了一个对象 - 示例 实时演示using System; namespace CalculatorApplication { class NumberManipulator { public void swap(int x, int y) { int temp; temp = x; /* 保存 x 的值 */ x = y; /* 将 y 放入 x */ ... 阅读更多
1K+ 次查看
要计算幂指数值,请使用 Math.pow() 方法。这里,n 是数字,p 是幂 - double res = Math.Pow(n, p);以下是完整的代码 - 示例 实时演示using System; class Program { static void Main() { double n, p; n = 7; p = 3; Console.WriteLine("指数幂= "+n); double res = Math.Pow(n, p); Console.WriteLine("结果= {0}", res); Console.ReadLine(); } }输出指数幂= 7 结果= 343
378 次查看
sizeof() 数据类型返回数据类型的大小。假设您需要查找 int 数据类型的大小 - sizeof(int);对于 double 数据类型 - sizeof(double);让我们看看查找各种数据类型大小的完整示例 - 示例 实时演示using System; namespace Demo { class Program { static void Main(string[] args) { Console.WriteLine("long 的大小为 {0}", sizeof(long)); Console.WriteLine("double 的大小为 {0}", sizeof(double)); Console.ReadLine(); } } }输出long 的大小为 8 double 的大小为 8
105 次查看
循环语句允许我们多次执行语句或语句组。以下是 C# 中支持的循环 - 序号循环类型和描述1while 循环当给定条件为真时,它重复一个语句或一组语句。它在执行循环体之前测试条件。2for 循环它多次执行一系列语句,并缩写管理循环变量的代码。3do...while 循环它类似于 while 语句,除了它在循环体末尾测试条件使用 C#,您还可以使用 foreach 循环,如下所示 - 示例 实时 ... 阅读更多
136 次查看
Array.LongLength 属性获取一个 64 位整数,表示数组所有维度中元素的总数。假设您的长数据类型数组为 - long[,] arr1= new long[15, 35];使用 LongLength 属性获取表示数组所有维度中元素总数的整数 - arr1.LongLength让我们来看一个实现数组类 Array.LongLength 属性的示例 - 示例 实时演示using System; class Program { static void Main() { long[,] arr1= new long[15, 35]; long len1 = arr1.GetLongLength(0); Console.WriteLine(len1); Console.WriteLine(arr1.LongLength); } }输出15 525
69 次查看
C# 中的 Array.Lenth 属性用于查找数组的长度。首先设置数组类 - Array arr = Array.CreateInstance(typeof(String), 3); arr.SetValue("Electronics", 0); arr.SetValue("Clothing", 1); arr.SetValue("Appliances", 2);现在由于数组的长度为 3,Length 属性将给出结果 3 - arr.Length以下是实现数组类 Array.Length 属性的代码 - 示例 实时演示using System.Collections.Generic; using System.Linq; using System.Text; namespace lower { class Program { static void Main(string[] args) { Array arr = Array.CreateInstance(typeof(String), 3); arr.SetValue("Electronics", 0); ... 阅读更多
2K+ 次查看
C# 提供了两种实现静态多态性的技术 - 函数重载运算符重载函数重载两个或两个以上具有相同名称但参数不同的方法,这就是我们所说的 C# 中的函数重载。C# 中的函数重载可以通过更改参数的数量和参数的数据类型来执行。假设您有一个打印数字乘积的函数,那么我们的重载方法将具有相同的名称,但参数数量不同 - public static int mulDisplay(int one, int two) { } public static int mulDisplay(int one, int two, int three) { } public static int mulDisplay(int one, ... 阅读更多
93 次查看
Array.IsReadOnly 属性获取一个值,指示数组是否为只读。首先,设置数组值 - Array arr = Array.CreateInstance(typeof(String), 3); arr.SetValue("Electronics", 0); arr.SetValue("Clothing", 1);现在让我们使用 IsReadOnly 属性来查找数组是否为只读。如果数组为只读,则无法更新 - arr.IsReadOnly以下是说明 Array.IsReadOnly 属性用法的完整示例 - 示例 实时演示using System.Collections.Generic; using System.Linq; using System.Text; namespace lower { class Program { static void Main(string[] args) { Array arr = Array.CreateInstance(typeof(String), 3); arr.SetValue("Electronics", 0); ... 阅读更多