Util.GetEncoding Method

QsInformatica.Utils

UtilGetEncoding Method

Determines a text file's encoding by analyzing its byte order mark (BOM). Defaults to ASCII when detection of the text file's endianness fails.

Namespace:  QsInformatica.Utils
Assembly:  QsInformatica.Utils (in QsInformatica.Utils.dll) Version: 22.4.2.0 (22.4.2.0)
Syntax
public static Encoding GetEncoding(
	string filename
)
Public Shared Function GetEncoding ( 
	filename As String
) As Encoding
public:
static Encoding^ GetEncoding(
	String^ filename
)
static member GetEncoding : 
        filename : string -> Encoding 

Parameters

filename
Type: SystemString
The text file to analyze.

Return Value

Type: Encoding
The detected encoding.
See Also