1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Changed Count/MinValue/MaxValue from properties to methods

This commit is contained in:
Brian Fiete 2022-06-23 13:37:15 -07:00
parent d17da427bc
commit 439b34f7c2
2 changed files with 35 additions and 44 deletions

View file

@ -138,9 +138,9 @@ namespace Tests
eg.Set(66);
Test.Assert(eg == .B);
var ea = EnumA.MaxValue;
var ea = EnumA.GetMaxValue();
Test.Assert(ea == .B);
Test.Assert(EnumA.Count == 2);
Test.Assert(EnumA.GetCount() == 2);
}
}
}