public static string ShowMembers <T>(this T obj) { return(ShowMember._ShowMembers(obj, typeof(T), ", ")); }
public static string ShowMembers <T>(this T obj, string join_token) { return(ShowMember._ShowMembers(obj, typeof(T), join_token)); }