toHashtable() public method

public toHashtable ( ) : Hashtable
return System.Collections.Hashtable
Beispiel #1
0
 public static Object ToObject(AssocArray value, Type conversionType, Encoding encoding)
 {
     if (value == null) {
         return null;
     }
     return ToObject(value.toHashtable(), conversionType, encoding);
 }
Beispiel #2
0
 public static Hashtable ToHashtable(AssocArray value)
 {
     if (value == null) {
         return null;
     }
     return value.toHashtable();
 }