diff --git a/csharp/Platform.Memory/ArrayMemory.cs b/csharp/Platform.Memory/ArrayMemory.cs index 850e6e1..ee14192 100644 --- a/csharp/Platform.Memory/ArrayMemory.cs +++ b/csharp/Platform.Memory/ArrayMemory.cs @@ -17,7 +17,6 @@ public class ArrayMemory : IArrayMemory #region Properties /// - /// public long Size { [MethodImpl(MethodImplOptions.AggressiveInlining)] @@ -25,7 +24,6 @@ public long Size } /// - /// public TElement this[long index] { [MethodImpl(MethodImplOptions.AggressiveInlining)] diff --git a/csharp/Platform.Memory/DirectMemoryAsArrayMemoryAdapter.cs b/csharp/Platform.Memory/DirectMemoryAsArrayMemoryAdapter.cs index ec16e53..6ea0043 100644 --- a/csharp/Platform.Memory/DirectMemoryAsArrayMemoryAdapter.cs +++ b/csharp/Platform.Memory/DirectMemoryAsArrayMemoryAdapter.cs @@ -22,7 +22,6 @@ public class DirectMemoryAsArrayMemoryAdapter : DisposableBase, IArray #region Properties /// - /// public long Size { [MethodImpl(MethodImplOptions.AggressiveInlining)] @@ -30,7 +29,6 @@ public long Size } /// - /// public IntPtr Pointer { [MethodImpl(MethodImplOptions.AggressiveInlining)] @@ -38,7 +36,6 @@ public IntPtr Pointer } /// - /// public TElement this[long index] { [MethodImpl(MethodImplOptions.AggressiveInlining)] diff --git a/csharp/Platform.Memory/FileArrayMemory.cs b/csharp/Platform.Memory/FileArrayMemory.cs index 69fa309..4168690 100644 --- a/csharp/Platform.Memory/FileArrayMemory.cs +++ b/csharp/Platform.Memory/FileArrayMemory.cs @@ -22,7 +22,6 @@ public class FileArrayMemory : DisposableBase, IArrayMemory #region Properties /// - /// public long Size { [MethodImpl(MethodImplOptions.AggressiveInlining)] @@ -30,7 +29,6 @@ public long Size } /// - /// public TElement this[long index] { [MethodImpl(MethodImplOptions.AggressiveInlining)] diff --git a/csharp/Platform.Memory/FileMappedResizableDirectMemory.cs b/csharp/Platform.Memory/FileMappedResizableDirectMemory.cs index 660c92e..9800723 100644 --- a/csharp/Platform.Memory/FileMappedResizableDirectMemory.cs +++ b/csharp/Platform.Memory/FileMappedResizableDirectMemory.cs @@ -113,7 +113,6 @@ private bool UnmapFile(IntPtr pointer) #region ResizableDirectMemoryBase Methods /// - /// [MethodImpl(MethodImplOptions.AggressiveInlining)] protected override void OnReservedCapacityChanged(long oldReservedCapacity, long newReservedCapacity) { @@ -123,7 +122,6 @@ protected override void OnReservedCapacityChanged(long oldReservedCapacity, long } /// - /// [MethodImpl(MethodImplOptions.AggressiveInlining)] protected override void DisposePointer(IntPtr pointer, long usedCapacity) { diff --git a/csharp/Platform.Memory/HeapResizableDirectMemory.cs b/csharp/Platform.Memory/HeapResizableDirectMemory.cs index 77262d7..a799d24 100644 --- a/csharp/Platform.Memory/HeapResizableDirectMemory.cs +++ b/csharp/Platform.Memory/HeapResizableDirectMemory.cs @@ -52,12 +52,10 @@ public HeapResizableDirectMemory() : this(MinimumCapacity) { } #region ResizableDirectMemoryBase Methods /// - /// [MethodImpl(MethodImplOptions.AggressiveInlining)] protected override void DisposePointer(IntPtr pointer, long usedCapacity) => Marshal.FreeHGlobal(pointer); /// - /// [MethodImpl(MethodImplOptions.AggressiveInlining)] protected override void OnReservedCapacityChanged(long oldReservedCapacity, long newReservedCapacity) { diff --git a/csharp/Platform.Memory/ResizableDirectMemoryBase.cs b/csharp/Platform.Memory/ResizableDirectMemoryBase.cs index 5d8acd9..f4d11fa 100644 --- a/csharp/Platform.Memory/ResizableDirectMemoryBase.cs +++ b/csharp/Platform.Memory/ResizableDirectMemoryBase.cs @@ -33,7 +33,6 @@ public abstract class ResizableDirectMemoryBase : DisposableBase, IResizableDire #region Properties /// - /// /// The memory block is disposed.Блок памяти уже высвобожден. public long Size { @@ -46,7 +45,6 @@ public long Size } /// - /// /// The memory block is disposed.Блок памяти уже высвобожден. public IntPtr Pointer { @@ -65,7 +63,6 @@ protected set } /// - /// /// The memory block is disposed.Блок памяти уже высвобожден. /// Attempted to set the reserved capacity to a value that is less than the used capacity.Была выполнена попытка установить зарезервированную емкость на значение, которое меньше используемой емкости. public long ReservedCapacity @@ -90,7 +87,6 @@ public long ReservedCapacity } /// - /// /// The memory block is disposed.Блок памяти уже высвобожден. /// Attempted to set the used capacity to a value that is greater than the reserved capacity or less than zero.Была выполнена попытка установить используемую емкость на значение, которое больше, чем зарезервированная емкость или меньше нуля. public long UsedCapacity