sk_stream_read_u8() приватный Метод

private sk_stream_read_u8 ( IntPtr stream ) : Byte
stream System.IntPtr
Результат Byte
Пример #1
0
 public bool ReadByte(out Byte buffer)
 {
     fixed(Byte *b = &buffer)
     {
         return(SkiaApi.sk_stream_read_u8(Handle, b));
     }
 }
Пример #2
0
 public bool ReadByte(out Byte buffer)
 {
     return(SkiaApi.sk_stream_read_u8(Handle, out buffer));
 }
Пример #3
0
 public Byte ReadByte()
 {
     return(SkiaApi.sk_stream_read_u8(Handle));
 }