mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Changed Count/MinValue/MaxValue from properties to methods
This commit is contained in:
parent
d17da427bc
commit
439b34f7c2
2 changed files with 35 additions and 44 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue