SolutionSaveAsByteArray Method (String) |
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.
Namespace:
VRSolver
Assembly:
VRSolver (in VRSolver.dll) Version: 1.13.0.0
Syntaxpublic byte[] SaveAsByteArray(
string problemFileName
)
Public Function SaveAsByteArray (
problemFileName As String
) As Byte()
public:
array<unsigned char>^ SaveAsByteArray(
String^ problemFileName
)
member SaveAsByteArray :
problemFileName : string -> byte[]
Parameters
- problemFileName
- Type: SystemString
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
Type:
ByteThe Solution as a byte array.
See Also