using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace G2.Utils { /// <summary> /// 字典帮助类 /// </summary> public static class DictionaryHelper { //…
原文:对复杂字典Dictionary<T1,T2>排序问题 //VoltageCount类(电压值对应的数量): public class VoltageCount { public Double Voltage { get; set; } //电压值 public int CountV { get; set; } //电压值对应的数量 public VoltageCount() { } publi…