找到 2628 篇文章 关于 C#

C# 中从 UInt64 到 Decimal 的隐式转换

Samual Sam
更新于 2020年6月23日 07:48:53

327 次浏览

ulong 类型表示 64 位无符号整数,即 UInt64。要将 64 位无符号整数隐式转换为 Decimal,首先设置 UInt64 值。ulong val = ulong.MaxValue; 要将 ulong 转换为 decimal,请赋值。decimal dec; dec = val;让我们来看上面的例子。示例 在线演示using System; public class Demo {    public static void Main() {       ulong val = ulong.MaxValue;       decimal dec;       Console.WriteLine("从 Ulong 到 Decimal 的隐式转换");       dec = val;       Console.WriteLine("Decimal : "+dec);    } }输出从 Ulong 到 Decimal 的隐式转换 Decimal : 18446744073709551615

C# Convert.ToInt32 方法

George John
更新于 2020年6月23日 07:49:14

628 次浏览

使用 Convert.ToInt32 方法将文本转换为整数。首先,设置一个字符串。string str = "12";现在,使用 Convert.ToInt32() 方法将上述字符串转换为数字。Convert.ToInt32(str);让我们来看完整的示例。示例 在线演示using System; class Program {    static void Main() {       string str = "12";       Console.WriteLine("字符串: "+str);       int n = Convert.ToInt32(str);       Console.WriteLine("数字: "+n);    } }输出字符串: 12 数字: 12

C# int.TryParse 方法

karthikeya Boyini
更新于 2023年9月2日 14:17:10

64K+ 次浏览

使用 C# 中的 int.TryParse() 方法将数字的字符串表示形式转换为整数。如果字符串无法转换,则 int.TryParse() 方法返回 false,即布尔值。假设您有一个数字的字符串表示形式。string myStr = "12";现在要将其转换为整数,请使用 int.TryParse()。它将被转换并返回 True。int.TryParse(myStr, out a);示例 在线演示using System.IO; using System; class Program {    static void Main() {       bool res;       int a;       string myStr = "12";       res = int.TryParse(myStr, out a);   ... 阅读更多

C# into 关键字

Ankith Reddy
更新于 2020年6月23日 07:40:16

93 次浏览

使用 into 运算符在 select 子句中设置查询。以下是我们的包含员工详细信息的列表 - IList employee = new List() {    new Employee() { EmpID = 1, EmpName = "Tom", EmpMarks = 90, Rank = 8} ,    new Employee() { EmpID = 2, EmpName = "Anne", EmpMarks = 60, Rank = 21 } ,    new Employee() { EmpID = 3, EmpName = "Jack", EmpMarks = 76, Rank = 18 } ,    new Employee() { EmpID = 4, EmpName = "Amy" , EmpMarks = 67, Rank = 20} , };现在,获取以...结尾的员工姓名 阅读更多

C# 程序:查找数字值序列的平均值

Samual Sam
更新于 2020年6月23日 07:40:42

4K+ 次浏览

使用 Linq Average() 方法查找数字值序列的平均值。首先,设置一个序列。List list = new List { 5, 8, 13, 35, 67 };现在,使用 Queryable Average() 方法获取平均值。Queryable.Average(list.AsQueryable());示例 在线演示using System; using System.Linq; using System.Collections.Generic; class Demo {    static void Main() {       List list = new List { 5, 8, 13, 35, 67 };       double avg = Queryable.Average(list.AsQueryable());       Console.WriteLine("平均值 = "+avg);    } }输出平均值 = 25.6

C# 程序:在链表中给定节点之前添加节点

Arjun Thakur
更新于 2020年6月23日 07:41:56

197 次浏览

声明一个 LinkedList 并向其中添加节点。string [] students = {"Tim", "Jack", "Henry", "David", "Tom"}; LinkedList list = new LinkedList(students);让我们添加一个新节点。var newNode = list.AddLast("Kevin");现在,要在给定节点之前添加节点,请使用 AddBefore() 方法。list.AddBefore(newNode, "Matt");现在让我们来看完整的代码。示例 在线演示using System; using System.Collections.Generic; class Demo {    static void Main() {       string [] students = {"Tim", "Jack", "Henry", "David", "Tom"};       LinkedList list = new LinkedList(students);       foreach (var stu in list) {          Console.WriteLine(stu);       }     ... 阅读更多

C# 程序:在链表的最后位置添加节点

karthikeya Boyini
更新于 2020年6月23日 07:41:13

195 次浏览

设置带有节点的 LinkedList。string [] students = {"Tim", "Jack", "Henry", "David", "Tom"}; LinkedList list = new LinkedList(students);现在,使用 AddLast() 方法在最后位置添加节点。list.AddLast("Kevin");这是包含已更新 LinkedList 的完整代码。示例 在线演示using System; using System.Collections.Generic; class Demo {    static void Main() {       string [] students = {"Tim", "Jack", "Henry", "David", "Tom"};       LinkedList list = new LinkedList(students);       foreach (var stu in list) {          Console.WriteLine(stu);       }       // 在末尾添加节点     ... 阅读更多

C# 中从 Char 到 Decimal 的隐式转换

Ankith Reddy
更新于 2020年6月23日 07:42:22

2K+ 次浏览

要将 char 隐式转换为 Decimal,首先设置一个 char。char c = 'p';要将 char 转换为 decimal,请赋值。decimal dec; dec = c;让我们来看上面的例子。示例 在线演示using System; public class Demo {    public static void Main() {       char c = 'p';       decimal dec;       Console.WriteLine("从 Char 到 Decimal 的隐式转换");       dec = c;       Console.WriteLine("Decimal : "+dec);    } }输出从 Char 到 Decimal 的隐式转换 Decimal : 112

C# 中从 Int16 到 Decimal 的隐式转换

Samual Sam
更新于 2020年6月23日 07:42:46

183 次浏览

short 类型表示 16 位有符号整数,即 Int16。要将 16 位有符号整数隐式转换为 Decimal,首先设置一个 short 值。short val = -32768;要将 short 转换为 decimal,请赋值。dec = val;让我们来看另一个例子。示例 在线演示using System; public class Demo {    public static void Main() {       short val = -32768;       decimal dec;       Console.WriteLine("从 Int16 到 Decimal 的隐式转换");       dec = val;       Console.WriteLine("Decimal : "+dec);    } }输出从 Int16 到 Decimal 的隐式转换 Decimal : -32768

C# 中的 LinkedList AddFirst 方法

Arjun Thakur
更新于 2020年6月23日 07:43:27

636 次浏览

在链表中,如果要在第一个位置添加节点,请使用 AddFirst 方法。让我们首先设置一个 LinkedList。string [] students = {"Jenifer", "Angelina", "Vera"}; LinkedList list = new LinkedList(students);现在,要添加一个元素作为第一个节点,请使用 AddFirst() 方法。List.AddFirst(“Natalie”);示例 在线演示using System; using System.Collections.Generic; class Demo {    static void Main() {       string [] students = {"Jenifer", "Angelina", "Vera"};       LinkedList list = new LinkedList(students);       foreach (var stu in list) {          Console.WriteLine(stu);       }       // 添加节点     ... 阅读更多

广告