C# key=value的格式,并按照参数名ASCII字典排序

发布时间:2024年01月02日
using System;
using System.Collections.Generic;
using System.Linq;
 
class Program
{
    static void Main(string[] args)
    {
        Dictionary<string, string> parameters = new Dictionary<string, string>();
        
        // 添加参数到字典中(这里只作为示例)
        parameters["name"] = "John";
        parameters["age"] = "25";
        parameters["city"] = "New York";
        
        List<KeyValuePair<string, string>> sortedParameters = parameters.OrderBy(p => p.Key).ToList();
        
        foreach (var parameter in sortedParameters)
        {
            Console.WriteLine($"{parameter.Key}={parameter.Value}");
        }
    }
}

文章来源:https://blog.csdn.net/chenludaniel/article/details/135342973
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。