From 85e33b3bc17bfb5190ecee7ef64f5f2d4a5d9386 Mon Sep 17 00:00:00 2001 From: FaustVX Date: Tue, 17 Jul 2018 14:56:52 +0200 Subject: [PATCH] Mark BigFloat(string) constructor as Obsolete --- BigFloat.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BigFloat.cs b/BigFloat.cs index d50c1f8..4f5771d 100644 --- a/BigFloat.cs +++ b/BigFloat.cs @@ -41,6 +41,7 @@ public int Sign // Denominator = BigInteger.One; // } + [Obsolete("Use BigFloat.Parse instead.")] public BigFloat(string value) { var bf = Parse(value);