From 3592d0604d63cfdc4586c8acd53f618ccfe24f0f Mon Sep 17 00:00:00 2001 From: StephenCWills Date: Tue, 18 Nov 2025 09:28:53 -0500 Subject: [PATCH] Fix nullability of parameter in TypeConvertToString --- src/Gemstone/Common.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gemstone/Common.cs b/src/Gemstone/Common.cs index 1ccf54ac02..14d3e14980 100644 --- a/src/Gemstone/Common.cs +++ b/src/Gemstone/Common.cs @@ -113,7 +113,7 @@ public static string ApplicationName /// original . /// /// - public static string TypeConvertToString(object value) + public static string TypeConvertToString(object? value) { return TypeConvertToString(value, null); }