首先,设置一个字符串数组−string[] arr = new string[] { "Indian", "Moroccon", "American", };要按字典顺序对单词进行排序−var sort = from a in arr orderby a select a;示例 在线演示让我们看看完整的代码−using System; using System.Linq; class Program { static void Main() { string[] arr = new string[] { "Indian", "Moroccon", "American", }; var sort = from a in arr orderby a select a; foreach(string res in sort) { Console.WriteLine(res); } } }输出American Indian Moroccon
单元测试是 C# 代码的关键,因为它可以帮助在开发过程中维护代码。它可以让你了解开发周期中的问题。通过单元测试,您可以使代码可靠且可重用。采用单元测试的基本原则之一是遵循 TDD(测试驱动开发)方法,在这种方法中,我们必须首先编写测试用例,然后编写简单的代码以使测试通过。对于单元测试,您需要使用 Microsoft 测试工具,我们称之为 MS Unit Test。创建… 阅读更多