/// <summary>Print useful information about an object instance to the [Out] Parameter of the Script component. </summary>
 /// <param name="obj">Object instance to parse.</param>
 private void Reflect(object obj)
 {
     __out.Add(GH_ScriptComponentUtilities.ReflectType_CS(obj));
 }
Beispiel #2
0
 /// <summary>Print the signatures of all the overloads of a specific method to the [Out] Parameter of the Script component. </summary>
 /// <param name="obj">Object instance to parse.</param>
 private void Reflect(object obj, string method_name)
 {
     __out.Add(GH_ScriptComponentUtilities.ReflectType_CS(obj, method_name));
 }