Table of Contents

Class Field<V>

Namespace
Mech3DotNet.Exchange
Assembly
Mech3DotNet.dll

A field of a structure being deserialized.

The field's value can be set. To get the value, call Unwrap, which throws an exception if the value has not been set.

public class Field<V>

Type Parameters

V
Inheritance
Field<V>
Inherited Members

Constructors

Field()

public Field()

Field(V)

public Field(V value)

Parameters

value V

Properties

Value

public V Value { set; }

Property Value

V

Methods

Unwrap(string, string)

public V Unwrap(string structName, string fieldName)

Parameters

structName string
fieldName string

Returns

V