diff --git a/src/ImageSharp/Image/PixelArea{TColor}.cs b/src/ImageSharp/Image/PixelArea{TColor}.cs index 12ccdd5bac..b1ae5f8707 100644 --- a/src/ImageSharp/Image/PixelArea{TColor}.cs +++ b/src/ImageSharp/Image/PixelArea{TColor}.cs @@ -18,6 +18,11 @@ namespace ImageSharp public sealed unsafe class PixelArea : IDisposable where TColor : struct, IPackedPixel, IEquatable { + /// + /// True if was rented from by the constructor + /// + private readonly bool isBufferRented; + /// /// Provides a way to access the pixels from unmanaged memory. /// @@ -28,11 +33,6 @@ namespace ImageSharp /// private IntPtr dataPointer; - /// - /// True if was rented from by the constructor - /// - private bool isBufferRented; - /// /// A value indicating whether this instance of the given entity has been disposed. ///