Show / Hide Table of Contents

Class AnonWrapper<T>

Wrapper which allows for easier management of userdata without registering a new userdata type - useful if a type which is not exposed to scripts but can be managed as a "black box" by scripts is desired.

Inheritance
System.Object
AnonWrapper
AnonWrapper<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: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class AnonWrapper<T> : AnonWrapper
Type Parameters
T

The type to wrap

Constructors

AnonWrapper()

Initializes a new instance of the AnonWrapper<T> class.

Declaration
public AnonWrapper()

AnonWrapper(T)

Initializes a new instance of the AnonWrapper<T> class.

Declaration
public AnonWrapper(T o)
Parameters
T o

The o.

Properties

Value

Gets or sets the value this instance wraps.

Declaration
public T Value { get; set; }
Property Value
T

Back to top Built by Itinero, MIT licensed.