找到 2628 篇文章 适用于 C#

获取 C# 中值类型 Decimal 的 TypeCode

AmitDiwan
更新于 2019-12-09 06:15:28

129 次查看

要获取值类型 Decimal 的 TypeCode,代码如下:示例 实时演示使用 System; 公共类演示 {    公共静态 void Main() {       Decimal val = Decimal.MaxValue;       Console.WriteLine("Decimal 值 = {0}", val);       Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );       TypeCode type = val.GetTypeCode();       Console.WriteLine("TypeCode = "+type);    } }输出这将产生以下输出:Decimal 值 = 79228162514264337593543950335 HashCode = 1173356544 TypeCode = Decimal示例现在让我们看看另一个示例: 实时演示使用 System; 公共类演示 {    公共静态 void Main() {     ... 阅读更多

获取 C# 中当前 Decimal 实例的哈希码

AmitDiwan
更新于 2019-12-09 06:11:04

122 次查看

要获取当前 Decimal 实例的哈希码,代码如下:示例 实时演示使用 System; 公共类演示 {    公共静态 void Main() {       Decimal val = 135269.38193M;       Console.WriteLine("Decimal 值 = {0}", val);       Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );    } }输出这将产生以下输出:Decimal 值 = 135269.38193 HashCode = 1328665595示例现在让我们看看另一个示例: 实时演示使用 System; 公共类演示 {    公共静态 void Main() {       Decimal val = Decimal.MaxValue;       Console.WriteLine("Decimal 值 = {0}", val);       Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );    } }输出这将产生以下输出:Decimal 值 = 79228162514264337593543950335 HashCode = 1173356544

将 C# 中逻辑值的指定字符串表示形式转换为其布尔等效项

AmitDiwan
更新于 2019-12-09 06:08:28

86 次查看

要将逻辑值的指定字符串表示形式转换为其布尔等效项,代码如下:示例 实时演示使用 System; 公共类演示 {    公共静态 void Main() {       bool val;       bool flag;       val = Boolean.TryParse("true", out flag);       Console.WriteLine("Result = "+val);    } }输出这将产生以下输出:示例 实时演示使用 System; 公共类演示 {    公共静态 void Main() {       bool val; bool flag;       val = Boolean.TryParse("$", out flag);       Console.WriteLine("Result = "+val);    } }输出这将产生以下输出:Result = False

将 C# 中当前 DateTime 对象的值转换为 UTC

AmitDiwan
更新于 2019-12-09 06:03:43

2K+ 次查看

要将当前 DateTime 对象的值转换为协调世界时 (UTC),代码如下:示例 实时演示使用 System; 公共类演示 {    公共静态 void Main() {       DateTime d = new DateTime(2019, 12, 11, 7, 11, 25);       Console.WriteLine("Date = {0}", d);       DateTime res = d.ToUniversalTime();       Console.WriteLine("String representation = {0}", res);    } }输出这将产生以下输出:Date = 2019/12/11 上午 7:11:25 String representation = 2019/12/11 上午 7:11:25示例现在让我们看看另一个示例: 实时演示使用 System; 公共类演示 {    公 ... 阅读更多

C# 中列表的容量

AmitDiwan
更新于 2019-12-09 05:59:30

284 次查看

要获取列表的容量,代码如下:示例 实时演示使用 System; 使用 System.Collections.Generic; 公共类演示 {    公共静态 void Main(String[] args) {       List list1 = new List();       list1.Add("One");       list1.Add("Two");       list1.Add("Three");       list1.Add("Four");       list1.Add("Five");       Console.WriteLine("List1 中的元素...");       foreach (string res in list1) {          Console.WriteLine(res);       }       Console.WriteLine("List1 的容量 = "+list1.Capacity);       List list2 = new List();       list2.Add("India");     ... 阅读更多

C# 中两个 HashSet 的并集

AmitDiwan
更新于 2019-12-09 05:29:16

198 次查看

让我们看一个获取两个 HashSet 并集的示例示例 实时演示使用 System; 使用 System.Collections.Generic; 公共类演示 {    公共静态 void Main() {       HashSet set1 = new HashSet();       set1.Add(100);       set1.Add(200);       set1.Add(300);       set1.Add(400);       set1.Add(500);       set1.Add(600);       Console.WriteLine("HashSet1 元素...");       foreach(int ele in set1) {          Console.WriteLine(ele);       }       HashSet set2 = new HashSet();       set2.Add(100);       set2.Add(200);       set2.Add(300);     ... 阅读更多

检查 C# 中 HashSet 和指定集合是否包含相同的元素

AmitDiwan
更新于 2019-12-06 12:42:14

104 次查看

要检查 HashSet 和指定集合是否包含相同的元素,代码如下:示例 实时演示使用 System; 使用 System.Collections.Generic; 公共类演示 {    公共静态 void Main() {       HashSet set1 = new HashSet();       set1.Add("One");       set1.Add("Two");       set1.Add("Three");       set1.Add("Four");       set1.Add("Five");       set1.Add("Six");       set1.Add("Seven");       HashSet set2 = new HashSet();       set2.Add("One");       set2.Add("Two");       set2.Add("Three");       set2.Add("Four");       Console.WriteLine("它是否包含相同的 ... 阅读更多

获取 C# 中 OrderedDictionary 中包含键的 ICollection

AmitDiwan
更新于 2019-12-06 12:40:43

111 次查看

要获取包含 OrderedDictionary 中键的 ICollection,代码如下:示例 实时演示使用 System; 使用 System.Collections; 使用 System.Collections.Specialized; 公共类演示 {    公共静态 void Main() {       OrderedDictionary dict = new OrderedDictionary();       dict.Add("1", "One");       dict.Add("2", "Two");       dict.Add("3", "Three");       dict.Add("4", "Four");       dict.Add("5", "Five");       dict.Add("6", "Six");       dict.Add("7", "Seven");       dict.Add("8", "Eight");       ICollection col = dict.Keys;       String[] strKeys = new String[dict.Count];       col.CopyTo(strKeys, 0);     ... 阅读更多

获取 C# 中当前枚举类型的底层类型

AmitDiwan
更新于 2019-12-06 12:36:43

152 次查看

要返回当前枚举类型的底层类型,代码如下:示例 实时演示使用 System; 公共类演示 {    枚举车辆 {汽车,公共汽车,自行车,飞机}    公共静态 void Main() {       try {          Vehicle v = Vehicle.Bike;          Type type = v.GetType();          string[] str = type.GetEnumNames();          Console.WriteLine("GetEnumName() 返回常量名称 = " + str);          Type type2 = type.GetEnumUnderlyingType();          Console.Write("枚举底层类型 = "+type2);          Console.WriteLine("列出 ... 阅读更多

获取 C# 中当前枚举类型成员的名称

AmitDiwan
更新于 2019-12-06 12:33:51

43 次查看

要获取当前枚举类型的成员名称,代码如下:示例 实时演示使用 System; 公共类 Demo {    枚举 Vehicle {Car, Bus, Bike}    公共静态无效 Main() {       尝试 {          Type type = typeof(string);          string[] str = type.GetEnumNames();          Console.WriteLine("GetEnumName() 返回常量名称 = " + str);          Console.WriteLine("列出常量..");          对于 (int i = 0; i < str.Length; i++)          Console.Write("{0} ", str[i]);    ... 阅读更多

广告