BDB.BDB43.Data.staticalloc C# (CSharp) Method

staticalloc() static private method

static private staticalloc ( int len ) : void
len int
return void
			static void staticalloc(int len) {
				if (staticdata == null) {
					staticdata = new byte[len];
				} else if (staticdata.Length < len) {
					staticdata = new byte[len];
				}
			}