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