ProblemSaveAsByteArray Method (Boolean) |
Save the Problem to a byte array. The Problem is converted to
a JSON format and then the JSON format is converted to a byte array.
Namespace:
VRSolver
Assembly:
VRSolver (in VRSolver.dll) Version: 1.13.0.0
Syntaxpublic byte[] SaveAsByteArray(
bool indented
)
Public Function SaveAsByteArray (
indented As Boolean
) As Byte()
public:
array<unsigned char>^ SaveAsByteArray(
bool indented
)
member SaveAsByteArray :
indented : bool -> byte[]
Parameters
- indented
- Type: SystemBoolean
Indents the JSON text that is stored in the byte array if true.
Return Value
Type:
ByteThe Problem as a byte array.
See Also