コード例 #1
0
 public static void ToString(Zetbox.App.Base.IntDefaultValue obj, MethodReturnEventArgs <System.String> e)
 {
     if (obj.Property != null)
     {
         e.Result = string.Format("{0} will be initialized with '{1}'",
                                  obj.Property.Name,
                                  obj.IntValue);
     }
     else
     {
         e.Result = "Initializes a property with a configured int value";
     }
 }
コード例 #2
0
 public static void GetDefaultValue(Zetbox.App.Base.IntDefaultValue obj, MethodReturnEventArgs <object> e)
 {
     e.Result = obj.IntValue;
 }