Click or drag to resize

KspTypesProtoSerializeToString Method

Serializes value into a string.

Namespace:  KSPDev.ConfigUtils
Assembly:  KSPDev_Utils.2.5 (in KSPDev_Utils.2.5.dll) Version: 2.5 for KSP v1
Syntax
C#
public override 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