mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
13 lines
231 B
C#
13 lines
231 B
C#
namespace ServicePoint;
|
|
|
|
public sealed partial class Bitmap
|
|
{
|
|
public bool this[nuint x, nuint y]
|
|
{
|
|
get => Get(x, y);
|
|
set => Set(x, y, value);
|
|
}
|
|
|
|
public Span<byte> Data => UnsafeDataRef().AsSpan();
|
|
}
|