C# Класс Nexus.Client.Util.TextUtil

Utility functions to work with text.
Показать файл Открыть проект

Открытые методы

Метод Описание
ByteToString ( byte p_bteText ) : string

Converts the given byte array to a string.

This method attempts to detect the text encoding.

ByteToStringLines ( byte p_bteText ) : string[]

Converts the given byte array to an array of string lines.

This method attempts to detect the text encoding.

Описание методов

ByteToString() публичный статический Метод

Converts the given byte array to a string.
This method attempts to detect the text encoding.
public static ByteToString ( byte p_bteText ) : string
p_bteText byte The bytes to convert to a string.
Результат string

ByteToStringLines() публичный статический Метод

Converts the given byte array to an array of string lines.
This method attempts to detect the text encoding.
public static ByteToStringLines ( byte p_bteText ) : string[]
p_bteText byte The bytes to convert to an array of string lines.
Результат string[]