Nikolai Timofeev
Results
1
issues of
Nikolai Timofeev
``` private static byte[] Allocate( byte[] old, int requestSize ) { if ( old.Length < 256 ) { return new byte[ 256 ]; } // Use golden ratio to improve...
bug