C# Класс ExtensionMethods.StringExtensions

Показать файл Открыть проект

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

Метод Описание
ToLittleEndian ( this value ) : string

Converts a string of characters from Big Endian byte order to Little Endian byte order.

Assumptions this makes about the string. Every two characters make up the smallest data unit (analogous to byte). The entire string is the size of the systems natural unit of data (analogous to a word).

This function was designed to take in a Big Endian string of hexadecimal digits. input: DEADBEEF output: EFBEADDE

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

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

Converts a string of characters from Big Endian byte order to Little Endian byte order.

Assumptions this makes about the string. Every two characters make up the smallest data unit (analogous to byte). The entire string is the size of the systems natural unit of data (analogous to a word).

This function was designed to take in a Big Endian string of hexadecimal digits. input: DEADBEEF output: EFBEADDE
public static ToLittleEndian ( this value ) : string
value this /// A string in Big Endian Byte order. ///
Результат string