找到 2628 篇文章 关于 C#
3K+ 阅读量
可以将二维数组视为一个表格,它具有 x 行和 y 列。二维数组中的元素是通过使用下标访问的。也就是说,数组的行索引和列索引。int x = a[1, 1]; Console.WriteLine(x);让我们来看一个示例,该示例演示如何访问二维数组中的元素。示例 实时演示using System; namespace Demo { class MyArray { static void Main(string[] args) { /* 一个具有 5 行 2 列的数组 */ int[, ] a = new int[5, 2] ... 阅读更多
741 阅读量
分隔符是在以下字符串中看到的逗号。string str = "Welcome, to, New York";现在单独设置分隔符。char[] newDelimiter = new char[] { ', ' };使用Split()方法分割字符串,将分隔符作为参数。str.Split(newDelimiter, StringSplitOptions.None);要使用字符串分隔符分割字符串,请尝试运行以下代码 - 示例 实时演示using System; class Program { static void Main() { string str = "Welcome, to, New York"; char[] newDelimiter = new char[] { ', ' }; string[] arr = str.Split(newDelimiter, StringSplitOptions.None); ... 阅读更多
1K+ 阅读量
要使用正则表达式分割字符串,请使用 Regex.split。假设我们的字符串是 -string str = "Hello\rWorld";现在使用 Regex.split 按如下所示分割字符串 -tring[] res = Regex.Split(str, "\r");以下是使用 C# 中的正则表达式分割字符串的完整代码。示例 实时演示using System; using System.Text.RegularExpressions; class Demo { static void Main() { string str = "Hello\rWorld"; string[] res = Regex.Split(str, "\r"); foreach (string word in res) { Console.WriteLine(word); } } }输出Hello World
1K+ 阅读量
设置要分割的字符串。string str = "Hello World!";使用 split() 方法将字符串分割成单独的元素。string[] res = str.Split(' ');以下是使用 C# 中将字符串分割成字符串数组的元素的完整代码。示例 实时演示using System; class Demo { static void Main() { string str = "Hello World!"; string[] res = str.Split(' '); Console.WriteLine("单独的元素:"); foreach (string words in res) { Console.WriteLine(words); } } }输出单独的元素:Hello World!
402 阅读量
设置具有键和值的字典列表。var d = new Dictionary(); d.Add("Zack", 0); d.Add("Akon", 3); d.Add("Jack", 2); d.Add("Tom", 1);获取并排序键。var val = d.Keys.ToList(); val.Sort();您可以尝试运行以下代码以按值对字典列表进行排序。示例 实时演示using System.Collections.Generic; using System.Linq; class Demo { static void Main() { var d = new Dictionary(); d.Add("Zack", 0); d.Add("Akon", 3); d.Add("Jack", 2); d.Add("Tom", 1); // 获取键并排序它们。 var val ... 阅读更多
110 阅读量
锯齿数组是数组的数组。您可以声明一个名为 scores 的 int 类型的锯齿数组,如下所示。int [][] points;现在让我们看看如何初始化它。int[][] points = new int[][]{new int[]{10, 5}, new int[]{30, 40}, new int[]{70, 80}, new int[]{ 60, 70 }};访问锯齿数组元素如下 -int x = points[0][1];以下是显示如何在 C# 中访问锯齿数组的完整示例。示例using System; namespace ArrayApplication { class MyArray { static void Main(string[] args) { int[][] points = new int[][]{new int[]{10, 5}, new int[]{30, 40}, new int[]{70, ... 阅读更多
42K+ 阅读量
首先,在 C# 中设置一个列表。var list = new List{ "one","two","three","four"};现在获取元素的数量并随机显示。int index = random.Next(list.Count); Console.WriteLine(list[index]);要从 C# 中的列表中选择一个随机元素,请尝试运行以下代码 - 示例 实时演示using System; using System.Collections.Generic; namespace Demo { class Program { static void Main(string[] args) { var random = new Random(); var list = new List{ "one","two","three","four"}; int index = random.Next(list.Count); Console.WriteLine(list[index]); } } }输出three
296 阅读量
WriteLine() 是 System 命名空间中定义的 Console 类的方法此语句导致消息“Welcome!”显示在屏幕上,如下所示 - 示例 实时演示using System; namespace Demo { class Test { static void Main(string[] args) { Console.WriteLine("Welcome!"); Console.ReadKey(); } } }输出Welcome!要使用 Console.WriteLine 显示字符数组。示例 实时演示using System; namespace Demo { class Test { static void Main(string[] args) { char[] arr = new char[] { 'W', 'e'}; Console.WriteLine(arr); Console.ReadKey(); } } }输出We
491 阅读量
序列化/反序列化允许通过发送和接收数据与另一个应用程序进行通信。使用 XmlSerializer,您可以控制对象如何编码为 XML。要执行 XML 序列化,您需要以下两个类 - StreamWriter 类 XmlSerializer 类使用 StreamWriter 和要序列化的对象的参数调用 Serialize 方法。 string myPath = "new.xml"; XmlSerializer s = new XmlSerializer(settings.GetType()); StreamWriter streamWriter = new StreamWriter(myPath); s.Serialize(streamWriter, settings);一个名为“new.xml”的 XML 文件可见。现在要反序列化。 MySettings mySettings = new MySettings(); string myPath = "new.xml"; XmlSerializer ... 阅读更多
2K+ 阅读量
异常提供了一种将控制权从程序的一部分转移到另一部分的方法。C# 异常处理建立在四个关键字之上:try、catch、finally 和 throw。try - try 块标识为其激活特定异常的代码块。它后面跟着一个或多个 catch 块。catch - 程序通过异常处理程序在程序中的某个位置捕获异常,您希望在该位置处理问题。catch 关键字表示捕获异常。以下是一个示例,显示如何在 C# 中使用 try、catch 和 finally。示例 实时演示using ... 阅读更多