Click or drag to resize

AbstractOrdinaryValueTypeProtoSerializeToString Method

Serializes value into a string.

Namespace:  KSPDev.ConfigUtils
Assembly:  KSPDev_Utils.1.2 (in KSPDev_Utils.1.2.dll) Version: 1.2 for KSP v1.6+
Syntax
C#
public abstract string SerializeToString(
	Object value
)
Request Example View Source

Parameters

value
Type: SystemObject
A value to serialize.

Return Value

Type: String
A string representation of the value. It doesn't need to be human readable.
Remarks
In general avoid using ToString() methods to produce the serialized value. Such methods are not designed to be unambiguous.
See Also