Class ToMutable<T>
Abstract class that helps convert an immutable type object into another mutable object, assisting in serialization.
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 this instance's data. |