hch
2025-09-10 a80d9e64b60403c71ff7ff32c9e94e6833f50ace
Main/Utility/CommonFunc.cs
@@ -4,9 +4,9 @@
public class CommonFunc
{
   public static Dictionary<int, ulong> AddDict(Dictionary<int, ulong> dic1, Dictionary<int, ulong> dic2)
   public static Dictionary<int, long> AddDict(Dictionary<int, long> dic1, Dictionary<int, long> dic2)
    {
        var resultDic = new Dictionary<int, ulong>(dic1);
        var resultDic = new Dictionary<int, long>(dic1);
        foreach (var data in dic2)
        {
            if (resultDic.ContainsKey(data.Key))
@@ -21,7 +21,7 @@
    public static List<Item> ChangeToItemList(Dictionary<int, ulong> dict)
    public static List<Item> ChangeToItemList(Dictionary<int, long> dict)
    {
        List<Item> itemlist = new List<Item>();
        if (dict == null)