Fixed incorrect AllocZeros value in HGlobalMemoryMethods

pull/423/head
David Hall 2023-09-07 14:58:46 -06:00
parent ff50c4a4c9
commit a041fc9a67
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ namespace Vanara.InteropServices
public sealed class HGlobalMemoryMethods : IMemoryMethods
{
/// <inheritdoc/>
bool ISimpleMemoryMethods.AllocZeroes => true;
bool ISimpleMemoryMethods.AllocZeroes => false;
/// <summary>Gets a value indicating whether this memory supports locking.</summary>
/// <value><see langword="true"/> if lockable; otherwise, <see langword="false"/>.</value>