WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview
Main Page
Related Pages
Packages
Classes
Files
File List
File Members
IntExtensions.cs
Go to the documentation of this file.
1
using
System
;
2
using
System
.Collections.Generic;
3
using
System
.
Linq
;
4
using
System
.Text;
5
6
10
public
static
class
IntExtensions
11
{
18
public
static
int
Limit(
this
int
i,
int
MinValue,
int
MaxValue)
19
{
20
if
(i < MinValue)
return
MinValue;
21
if
(i > MaxValue)
return
MaxValue;
22
return
i;
23
}
24
31
public
static
bool
IsBetween(
this
int
i,
int
MinValue,
int
MaxValue)
32
{
33
return
(i >= MinValue && i <= MaxValue);
34
}
35
40
public
static
int
Abs(
this
int
i)
41
{
42
43
return
Math.Abs(i);
44
}
45
46
}
47
System.Linq
System
DirectOutput
Extensions
IntExtensions.cs
Generated on Sat Nov 19 2016 19:32:47 for WIP by
1.8.9.1