Added mossing file
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace System
|
||||
{
|
||||
static class DoubelExtensions
|
||||
{
|
||||
public static bool Between(this double value, double lower, double higher)
|
||||
{
|
||||
return value >= lower & value <= higher;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user