Table of Contents

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

object

Second

Gets or sets the second object.

public object Second { get; set; }

Property Value

object

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

first object

The first object.

second object

The second object.

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.