Struct FromToValue<T>
- Namespace
- Fr4z
- Assembly
- Fr4z.dll
A simple two values struct that can be of any type
[Serializable]
public struct FromToValue<T>
Type Parameters
T
- Inherited Members
Constructors
FromToValue(T, T)
public FromToValue(T from, T to)
Parameters
from
Tto
T
Properties
From
The initial value
public T From { get; set; }
Property Value
- T
To
The end value
public T To { get; set; }
Property Value
- T