Writes the content of a bit array to the file.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static void WriteToEnd(
	byte[] content,
	string filePath
)
Visual Basic
Public Shared Sub WriteToEnd ( 
	content As Byte(),
	filePath As String
)
Visual C++
public:
static void WriteToEnd(
	array<unsigned char>^ content, 
	String^ filePath
)
F#
static member WriteToEnd : 
        content : byte[] * 
        filePath : string -> unit 

Parameters

content
Type: array<System..::..Byte>[]()[][]
Array holding the content to be written.
filePath
Type: System..::..String
File path.

See Also