'宣言 Public Function New( _ ByVal sizeInBytes As System.Integer, _ ByVal canRead As System.Boolean, _ ByVal canWrite As System.Boolean _ )
public DataStream( System.int sizeInBytes, System.bool canRead, System.bool canWrite )
パラメータ
- sizeInBytes
- 割り当てられるバッファのサイズ (バイト単位)。
- canRead
- バッファから読み取りを許可する必要がある場合は
true
。 それ以外の場合はfalse
。 - canWrite
- バッファへの書き込みを許可する場合は
true
。それ以外の場合はfalse
。