コード例 #1
0
ファイル: WrappedByteBuffer.cs プロジェクト: wxlonstar/Fenix
 public virtual bool GetBoolean(int index) => Buf.GetBoolean(index);
コード例 #2
0
 public bool GetBoolean(int index)
 {
     CheckIndex(index, 1);
     return(_buffer.GetBoolean(index));
 }