Added SizeT.Zero value.

pull/83/head
David Hall 2019-10-17 09:13:00 -06:00
parent 77d4e5c49a
commit 1b472f58be
1 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,9 @@ namespace Vanara.PInvoke
/// <summary>Represents the smallest possible value of <see cref="SizeT"/>. This field is constant.</summary>
public static readonly SizeT MinValue = 0;
/// <summary>Represents the zero value of <see cref="SizeT"/>. This field is constant.</summary>
public static readonly SizeT Zero = default;
private UIntPtr val;
/// <summary>Initializes a new instance of the <see cref="SizeT"/> struct.</summary>