示例#1
0
        public UBitmap(UColor[,] map)
        {
            if (map == null)
                throw new ArgumentNullException("map");

            __Map = map;
            __Width = Map.GetLength(0);
            __Height = map.GetLength(1);
        }