SolutionSave As Byte Array(String) Method
Save the Solution to a byte array. The Solution is converted to
a text format and then the text format is converted to a byte array.
Definition
Namespace: VRSolver
Assembly: VRSolver (in VRSolver.dll) Version: 1.15.0+d867f7e856f281547f683ef6449a86e433a2356d
The Solution as a byte array.
Assembly: VRSolver (in VRSolver.dll) Version: 1.15.0+d867f7e856f281547f683ef6449a86e433a2356d
C#
public byte[] SaveAsByteArray(
string problemFileName
)VB
Public Function SaveAsByteArray (
problemFileName As String
) As Byte()C++
public:
array<unsigned char>^ SaveAsByteArray(
String^ problemFileName
)F#
member SaveAsByteArray :
problemFileName : string -> byte[] Parameters
- problemFileName String
- The path to the Problem file for this Solution. When the Solution is loaded again from the byte array it uses the problemFileName to load the Problem data.
Return Value
ByteThe Solution as a byte array.