ConsoleStringExtensions.WriteToConsole Method

Tungsten Suite

ConsoleStringExtensionsWriteToConsole Method

Writes text to the console at the specified location (x,y)

Namespace:  W
Assembly:  Tungsten.Console (in Tungsten.Console.dll) Version: 2.0.0
Syntax
C#
public static void WriteToConsole(
	this string message,
	int x,
	int y
)

Parameters

message
Type: SystemString
The text to write to the console
x
Type: SystemInt32
The column on which to start writing text
y
Type: SystemInt32
The row on which to start writing text

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
The Console origin (0,0) is top-left
See Also