public static bool ToArray <T>(CatchException.HashSet <T> Array) #endif { List <T> List = new List <T>(Array); T[] destinationArray = new T[List.Count]; List.CopyTo(destinationArray); return(destinationArray); }
public static List <T> Where <T>(CatchException.HashSet <T> Array, string IfMethod) #endif { List <T> ret = new List <T>(); foreach (T item in Array) { if (item.GetType() == IfType) { ret.Add(item); } } return(ret); }
public static T[] ToArray <T>(this CatchException.HashSet <T> Array)