| 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: 23.3.0.0 (23.3.0.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:
EncodingThe detected encoding.
See Also