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