Beispiel #1
0
 public static int GetInteger(this IESObject obj)
 {
     return(obj.Cast <IESInteger>().Value);
 }
Beispiel #2
0
 public static float GetNumber(this IESObject obj)
 {
     return(obj.Cast <IESNumber>().Value);
 }
Beispiel #3
0
 public static string GetString(this IESObject obj)
 {
     return(obj.Cast <IESString>().Value);
 }