AvalonStudio.Toolchains.Clang.ArmGCCLinkTemplateBase.WriteLine C# (CSharp) Method

WriteLine() public method

Write text directly into the generated output
public WriteLine ( string textToAppend ) : void
textToAppend string
return void
		public void WriteLine(string textToAppend)
		{
			Write(textToAppend);
			GenerationEnvironment.AppendLine();
			endsWithNewline = true;
		}