Exemplo n.º 1
0
 public static string ShowMembers <T>(this T obj)
 {
     return(ShowMember._ShowMembers(obj, typeof(T), ", "));
 }
Exemplo n.º 2
0
 public static string ShowMembers <T>(this T obj, string join_token)
 {
     return(ShowMember._ShowMembers(obj, typeof(T), join_token));
 }