C# 클래스 NContext.Extensions.ByteExtensions

Defines extension methods for Byte.
파일 보기 프로젝트 열기: PowerDMS/NContext

공개 메소드들

메소드 설명
ToBase64 ( this bytes ) : String

Gets the base64 encoded string from the specified bytes.

ToHexadecimal ( this bytes ) : String

Gets the hexadecimal representation of the specified bytes.

ToUTF8 ( this bytes ) : String

Gets the UTF8 encoded string from the specified bytes.

메소드 상세

ToBase64() 공개 정적인 메소드

Gets the base64 encoded string from the specified bytes.
public static ToBase64 ( this bytes ) : String
bytes this The bytes.
리턴 String

ToHexadecimal() 공개 정적인 메소드

Gets the hexadecimal representation of the specified bytes.
public static ToHexadecimal ( this bytes ) : String
bytes this The bytes to convert to hexadecimal.
리턴 String

ToUTF8() 공개 정적인 메소드

Gets the UTF8 encoded string from the specified bytes.
public static ToUTF8 ( this bytes ) : String
bytes this The bytes.
리턴 String