Example #1
0
 public void WriteRegion(IOPointer pointer, object obj)
 {
     if (pointer.IsValue)
     {
         WriteValue(obj, pointer.Pos);
     }
     else
     {
         obj.ForEachChild(IOPointer.GetRegionPointers(pointer), WriteRegion);
     }
 } // todo: highlight elements of free array with color (chessboard-ish order)    with   ((index.X + index.Y) & 1) ? color1 : color2