B2026 056 syntax problem in x/y plot #801

Merged
jjenko merged 8 commits from B2026-056-Syntax-problem-in-X/Y-plot into Development 2026-08-10 11:11:09 -04:00
Showing only changes of commit 6a42800d2c - Show all commits
+1 -6
View File
2
@@ -8,11 +8,6 @@ namespace Volian.Base.Library
{
public static class BaseLnSettings
{
private static bool _blBaseLine = false;
public static bool blBaseLine
{
get { return _blBaseLine; }
set { _blBaseLine = value; }
}
public static bool blBaseLine { get; set; } = false;
}
Review

can this be an autoproperty?

can this be an autoproperty?
}