static public int get_m_integers(IntPtr l)
 {
     try {
         YwLuaMonoDataBridge self = (YwLuaMonoDataBridge)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.m_integers);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_m_strings(IntPtr l)
 {
     try {
         YwLuaMonoDataBridge self = (YwLuaMonoDataBridge)checkSelf(l);
         System.String[]     v;
         checkArray(l, 2, out v);
         self.m_strings = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }