DirectOuput Framework R2
DirectOutput framework R2 for virtual pinball cabinets
Go to:
Overview
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Macros
Pages
ByteExtensions.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
byteExtensions
11
{
18
public
static
byte Limit(
this
byte d, byte MinValue, byte MaxValue)
19
{
20
if
(d < MinValue)
return
MinValue;
21
if
(d > MaxValue)
return
MaxValue;
22
return
d;
23
}
24
}
25
DirectOutput
Extensions
ByteExtensions.cs
Generated on Sun Mar 29 2015 13:38:04 for DirectOuput Framework R2 by
1.8.3.1