System.Web.Compilation.AssemblyBuilder.CSharpCodePragmaGenerator.ReserveSpace C# (CSharp) Method

ReserveSpace() public method

public ReserveSpace ( string filename ) : int
filename string
return int
			public int ReserveSpace (string filename) 
			{
				return pragmaChecksumStaticCount +
					pragmaLineStaticCount +
					md5ChecksumCount +
					(QuoteSnippetString (filename).Length * 2) +
					(Environment.NewLine.Length * 3) +
					BaseCompiler.HashMD5.ToString ("B").Length;
			}