找到 2628 篇文章,关于 C#

C# 中 SortedDictionary.Clear() 方法

AmitDiwan
更新于 2019年12月3日 07:03:31

59 次查看

C# 中的 SortedDictionary.Clear() 方法用于移除 SortedDictionary 中的所有元素。语法语法如下:public void Clear();示例让我们来看一个示例:实时演示using System; using System.Collections; using System.Collections.Generic; public class Demo { public static void Main(){ SortedDictionary sortedDict = new SortedDictionary(); sortedDict.Add(100, "Mobile"); sortedDict.Add(200, "Laptop"); sortedDict.Add(300, "Desktop"); sortedDict.Add(400, "Speakers"); sortedDict.Add(500, "Headphone"); sortedDict.Add(600, "Earphone"); Console.WriteLine("SortedDictionary 键值对..."); IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator(); while (demoEnum.MoveNext()) ... 阅读更多

C# SortedDictionary.Add() 方法

AmitDiwan
更新于 2019年12月3日 07:00:08

114 次查看

C# 中的 SortedDictionary.Add() 方法用于向 SortedDictionary 中添加具有指定键和值的元素。语法语法如下:public void Add (TKey key, TValue val);其中,key 值是待添加元素的键,val 是待添加元素的值。示例让我们来看一个示例:实时演示using System; using System.Collections; using System.Collections.Generic; public class Demo { public static void Main(){ SortedDictionary sortedDict = new SortedDictionary(); sortedDict.Add(100, "Mobile"); sortedDict.Add(200, "Laptop"); sortedDict.Add(300, "Desktop"); sortedDict.Add(400, ... 阅读更多

C# 中 TimeSpan.Subtract() 方法

AmitDiwan
更新于 2019年12月3日 06:56:42

952 次查看

C# 中的 TimeSpan.Subtract() 方法用于返回一个新的 TimeSpan 对象,其值为指定 TimeSpan 对象与该实例之间的差值。语法语法如下:public TimeSpan Subtract (TimeSpan span);其中,参数 span 是要减去的时段。示例让我们来看一个示例:实时演示using System; public class Demo { public static void Main(){ TimeSpan span1 = TimeSpan.FromTicks(1); TimeSpan span2 = new TimeSpan(1); TimeSpan span3 = TimeSpan.FromHours(1); TimeSpan span4 = TimeSpan.FromMilliseconds(1); TimeSpan span5 = TimeSpan.FromMinutes(1); ... 阅读更多

C# 中 TimeSpan.FromHours() 方法

AmitDiwan
更新于 2019年12月3日 06:51:14

922 次查看

C# 中的 TimeSpan.FromHours() 方法用于返回一个 TimeSpan 对象,表示指定的小时数,其精度精确到毫秒。语法语法如下:public static TimeSpan FromHours (double val);其中,val 值是精确到毫秒的小时数。示例让我们来看一个示例:实时演示using System; public class Demo { public static void Main(){ TimeSpan span1 = TimeSpan.FromDays(0.000323456); TimeSpan span2 = new TimeSpan(-2, 05, 10); TimeSpan span3 = TimeSpan.FromHours(5); Console.WriteLine("TimeSpan1 = "+span1); ... 阅读更多

C# 中 Stack.GetEnumerator() 方法

AmitDiwan
更新于 2019年12月3日 06:47:25

73 次查看

C# 中的 Stack.GetEnumerator() 方法用于返回 Stack 的 IEnumerator。语法语法如下:public virtual System.Collections.IEnumerator GetEnumerator ();示例让我们来看一个示例:实时演示using System; using System.Collections; public class Demo { public static void Main(){ Stack stack1 = new Stack(); stack1.Push(150); stack1.Push(300); stack1.Push(500); stack1.Push(750); stack1.Push(1000); Console.WriteLine("Stack1 元素..."); foreach(int val in stack1){ Console.WriteLine(val); } Stack stack2 = new Stack(); ... 阅读更多

C# 中 Stack.Equals() 方法

AmitDiwan
更新于 2019年12月3日 06:44:07

267 次查看

C# 中的 Stack.Equals() 方法用于检查 Stack 类对象是否等于另一个对象。语法语法如下:public virtual bool Equals (object ob);其中,参数 ob 是与另一个对象进行比较的对象。示例让我们来看一个示例:实时演示using System; using System.Collections; public class Demo { public static void Main(){ Stack stack = new Stack(); stack.Push(150); stack.Push(300); stack.Push(500); stack.Push(750); stack.Push(1000); stack.Push(1250); stack.Push(1500); stack.Push(2000); ... 阅读更多

C# 中 Double.IsNaN() 方法

AmitDiwan
更新于 2019年12月3日 06:39:35

613 次查看

C# 中的 Double.IsNaN() 方法用于返回一个值,该值指示指定的值是否不是数字 (NaN)。语法语法如下:public static bool IsNaN (double val);其中,val 是双精度浮点数。示例让我们来看一个示例:实时演示using System; public class Demo { public static void Main(){ double d = 1.0/0.0; Console.WriteLine("Double 值 = "+d); Console.WriteLine("Double 值的哈希码 = "+d.GetHashCode()); TypeCode type = d.GetTypeCode(); Console.WriteLine("Double 值的类型代码 = "+type); Console.WriteLine("正无穷大?= ... 阅读更多

C# 中 TimeSpan.FromDays() 方法

AmitDiwan
更新于 2019年12月3日 06:36:56

573 次查看

C# 中的 TimeSpan.FromDays() 方法用于返回一个 TimeSpan 对象,表示指定的天数,其精度精确到毫秒。语法语法如下:public static TimeSpan FromDays (double val);其中,参数 val 是精确到毫秒的天数。示例让我们来看一个示例:实时演示using System; public class Demo { public static void Main(){ TimeSpan span1 = new TimeSpan(5, 25, 0); TimeSpan span2 = new TimeSpan(1, 10, 0); TimeSpan span3 = TimeSpan.FromDays(43.999999); Console.WriteLine("TimeSpan1 = "+span1); ... 阅读更多

C# BitConverter.ToUInt64 方法

AmitDiwan
更新于 2019年12月2日 12:41:46

217 次查看

C# 中的 BitConverter.ToUInt64() 方法用于从字节数组中指定位置的八个字节返回一个 64 位无符号整数。语法public static ulong ToUInt64 (byte[] val, int begnIndex);示例其中,val 是字节数组,begnIndex 是 val 中的起始位置。实时演示using System; public class Demo { public static void Main() { byte[] arr = { 0, 0, 1, 3, 5, 7, 9, 11, 15 }; int count = arr.Length; Console.Write("字节数组... "); for (int i = 0; i < count; i++) { ... 阅读更多

C# BitConverter.ToUInt32() 方法

AmitDiwan
更新于 2019年12月2日 12:36:05

238 次查看

C# 中的 BitConverter.ToUInt32() 方法用于从字节数组中指定位置的四个字节转换出一个 32 位无符号整数。语法public static uint ToUInt32 (byte[] val, int begnIndex);其中,val 是字节数组,begnIndex 是 val 中的起始位置。示例 在线演示using System; public class Demo {    public static void Main() {       byte[] arr = { 0, 3, 5, 10, 15, 2};       int count = arr.Length;       Console.Write("字节数组... ");       for (int i = 0; i < count; i++) {         ... 阅读更多

广告