Class ToMutable<T>
Abstract class that helps converting an immutable type object into another mutable object, helping it in the serialization.
Inherited Members
Namespace: Evergine.Common.Serialization.YAML
Assembly: Evergine.Common.dll
Syntax
public abstract class ToMutable<T>
Type Parameters
Name | Description |
---|---|
T | The generic immutable type. |
Methods
ToImmutable()
Converts the element into the original immutable type.
Declaration
public abstract T ToImmutable()
Returns
Type | Description |
---|---|
T | An immutable instance containing the this instance data. |