You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.
18
18
/// </summary>
19
19
/// <param name="capacity">Initial capacity of buffer in bytes.</param>
20
20
/// <param name="growthFactor">Factor by which buffer should grow when necessary.</param>
/// A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.
30
+
/// </summary>
31
+
/// <param name="growthFactor">Factor by which buffer should grow when necessary.</param>
/// A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.
/// A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.
30
48
/// NOTE: when using a pre-allocated buffer, the stream will not grow!
@@ -42,6 +60,12 @@ public BitStream(byte[] target)
42
60
/// </summary>
43
61
publicboolResizable{get;}
44
62
63
+
privatefloat_growthFactor;
64
+
/// <summary>
65
+
/// Factor by which buffer should grow when necessary.
0 commit comments