mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-01 05:45:59 +02:00
added IParseable interface and applied it to all applicable types
This commit is contained in:
parent
3e8d90d300
commit
0a6062ba02
18 changed files with 169 additions and 18 deletions
|
@ -10,7 +10,7 @@ namespace System
|
|||
using System.Diagnostics;
|
||||
|
||||
#unwarn
|
||||
public struct Double : double, IFloating, ISigned, IFormattable, IHashable, ICanBeNaN
|
||||
public struct Double : double, IFloating, ISigned, IFormattable, IHashable, ICanBeNaN, IParseable<double>
|
||||
{
|
||||
public const double MinValue = -1.7976931348623157E+308;
|
||||
public const double MaxValue = 1.7976931348623157E+308;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue