AvalonStudio.ProgramConsole.WriteLine C# (CSharp) Method

WriteLine() public method

public WriteLine ( ) : void
return void
		public void WriteLine()
		{
			Console.WriteLine();
		}

Same methods

ProgramConsole::WriteLine ( string data ) : void

Usage Example

Beispiel #1
0
 private static IProject FindProject(Solution solution, string project)
 {
     try
     {
         return(solution.FindProject(project));
     }
     catch (Exception e)
     {
         console.WriteLine(e.Message);
         return(null);
     }
 }
All Usage Examples Of AvalonStudio.ProgramConsole::WriteLine