Class MutableUnit<T>
A mutable 1-tuple.
Inheritance
System.Object
MutableUnit<T>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class MutableUnit<T>
Type Parameters
Name | Description |
---|---|
T | Type the tuple holds. |
Constructors
MutableUnit(T)
Initializes a new instance of the MutableUnit<T> class.
Declaration
public MutableUnit(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to hold. |
Properties
Item
Gets or sets the first item in the tuple.
Declaration
public T Item { get; set; }
Property Value
Type | Description |
---|---|
T |