Example #1
0
 /// <summary>
 /// Object.ToString() displays the CLI type name.  But we want to display the class name (e.g.
 /// '&lt;foo object at 0x000000000000002C&gt;' unless we've overridden __repr__ but not __str__ in
 /// which case we'll display the result of __repr__.
 /// </summary>
 public static string ToStringHelper(IPythonObject o)
 {
     return(ObjectOps.__str__(DefaultContext.Default, o));
 }