Class OTS
- Namespace
- SunamoData.Data
- Assembly
- SunamoData.dll
Represents a pair of objects (Object, Type, String - OTS).
public class OTS
- Inheritance
-
OTS
- Inherited Members
- Extension Methods
Properties
First
Gets or sets the first object.
public object First { get; set; }
Property Value
Second
Gets or sets the second object.
public object Second { get; set; }
Property Value
Methods
Get(object, object)
Creates a new OTS instance with the specified first and second objects.
public static OTS Get(object first, object second)
Parameters
Returns
- OTS
A new OTS instance.
ToString()
Returns a string representation combining both objects.
public override string ToString()
Returns
- string
A string combining First and Second.