From 1b472f58beb01a120269778e4ce81cef5ee2e059 Mon Sep 17 00:00:00 2001 From: David Hall Date: Thu, 17 Oct 2019 09:13:00 -0600 Subject: [PATCH] Added SizeT.Zero value. --- Core/InteropServices/SizeT.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/InteropServices/SizeT.cs b/Core/InteropServices/SizeT.cs index 2a986156..bca2cf1f 100644 --- a/Core/InteropServices/SizeT.cs +++ b/Core/InteropServices/SizeT.cs @@ -13,6 +13,9 @@ namespace Vanara.PInvoke /// Represents the smallest possible value of . This field is constant. public static readonly SizeT MinValue = 0; + /// Represents the zero value of . This field is constant. + public static readonly SizeT Zero = default; + private UIntPtr val; /// Initializes a new instance of the struct.