示例#1
0
        public uint GetPixel(int x, int y)
        {
            int offset = y * _width + x;

            return(CPP.ReturnUInt("$px[offset]"));
        }
示例#2
0
 public static uint ValueOf(String s, int radix = 10)
 {
     return(CPP.ReturnUInt("$check(s)->$value()->toUInt(nullptr, radix)"));
 }