コード例 #1
0
 public static Dictionary <dynamic, T> ToDictionary <T>(this DataTable dataTable, string keyName, Type keyType) where T : Cope <T>, IManageable, new()
 {
     return(DataSerializer.ConvertDataTableToDictionaryOfType <T>(dataTable, keyName, keyType));
 }
コード例 #2
0
 public static Dictionary <TKey, T> ToDictionary <TKey, T>(this DataTable dataTable) where T : Cope <T>, IManageable, new()
 {
     return(DataSerializer.ConvertDataTableToDictionaryOfType <TKey, T>(dataTable));
 }