C# 클래스 PRI.ProductivityExtensions.EncodingExtensions.Encodingable

Class that contains extension methods that extend Encoding
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
GetBytes ( this encoding, Char chars, Byte bytes, Int32 byteIndex ) : Int32

Extends GetBytes so that buffer offset of 0 and call to Array.Length are not needed. encoding.GetBytes(chars, bytes, byteIndex);

GetChars ( this encoding, Byte bytes, Char chars, Int32 charIndex ) : Int32

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. encoding.GetChars(bytes, chars, charIndex);

메소드 상세

GetBytes() 공개 정적인 메소드

Extends GetBytes so that buffer offset of 0 and call to Array.Length are not needed. encoding.GetBytes(chars, bytes, byteIndex);
public static GetBytes ( this encoding, Char chars, Byte bytes, Int32 byteIndex ) : Int32
encoding this
chars Char
bytes Byte
byteIndex System.Int32
리턴 System.Int32

GetChars() 공개 정적인 메소드

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. encoding.GetChars(bytes, chars, charIndex);
public static GetChars ( this encoding, Byte bytes, Char chars, Int32 charIndex ) : Int32
encoding this
bytes Byte
chars Char
charIndex System.Int32
리턴 System.Int32