| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Drawing.Drawing2D.RegionData.cs
- //
- // Authors:
- // Dennis Hayes ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) 2002/3 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Drawing2D
- {
- /// <summary>
- /// Summary description for RegionData.
- /// </summary>
- public sealed class RegionData
- {
- byte[] data;
- internal RegionData()
- {
- }
- public byte[] Data {
- get {return data;}
- set {data = value;}
- }
- }
- }
|