Encode() 공개 정적인 메소드

public static Encode ( byte data ) : byte[]
data byte
리턴 byte[]
예제 #1
0
 public static int Encode(byte[] data, int off, int length, Stream outStream)
 {
     byte[] array = Base64.Encode(data, off, length);
     outStream.Write(array, 0, array.Length);
     return(array.Length);
 }
예제 #2
0
 public static byte[] Encode(byte[] data)
 {
     return(Base64.Encode(data, 0, data.Length));
 }