static public int get_Value(IntPtr l)
 {
     try {
         SkillSystem.IProperty self = (SkillSystem.IProperty)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.Value);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_Value(IntPtr l)
 {
     try {
         SkillSystem.IProperty self = (SkillSystem.IProperty)checkSelf(l);
         System.Object         v;
         checkType(l, 2, out v);
         self.Value = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }