System.Web.Compilation.TemplateControlCompiler.FlushText C# (CSharp) Method

FlushText() static private method

static private FlushText ( ControlBuilder builder, StringBuilder sb ) : void
builder System.Web.UI.ControlBuilder
sb StringBuilder
return void
		void FlushText (ControlBuilder builder, StringBuilder sb)
		{
			if (sb.Length > 0) {
				AddLiteralSubObject (builder, sb.ToString ());
				sb.Length = 0;
			}
		}
TemplateControlCompiler