[This is preliminary documentation and is subject to change.]

Gets the content of the file and load it into a character array.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static char[] GetCharsFromFile(
	string fileName
)
Visual Basic (Declaration)
Public Shared Function GetCharsFromFile ( _
	fileName As String _
) As Char()
Visual C++
public:
static array<wchar_t>^ GetCharsFromFile(
	String^ fileName
)

Parameters

fileName
Type: System..::.String
The full pathname of the file.

Return Value

A character array that contains all the characters of the file.

See Also