コード例 #1
0
ファイル: SQLSetup.cs プロジェクト: toddcoder/Core-code
 protected void loadAttributes(IHash <string, string> hash)
 {
     if (hash.AnyHash().If(out var actualHash))
     {
         foreach (var(key, value) in actualHash)
         {
             attributes[key] = value;
         }
     }
 }