C#Console.WindowLeftプロパティ
WindowsLeftプロパティは、画面バッファを基準にしたコンソールウィンドウ領域の左端の位置を取得または設定します。
整数変数を宣言して、左端の位置を取得します。
int left;
次に、Console.WindowLeftプロパティを使用します。
left = Console.WindowLeft
完全な例を見てみましょう。
例
using System; class Demo { static void Main() { int left; left = Console.WindowLeft; Console.WriteLine("Left position of the Console window = "+left); } }
出力
注:出力は、コンソールウィンドウの位置に応じて異なる場合があります
Left position of the Console window = 0
-
C#のConsole.KeyAvailable()プロパティ
C#のConsole.KeyAvailable()プロパティは、入力ストリームでキーを押すことができるかどうかを示す値を取得するために使用されます。 構文 構文は次のとおりです- public static bool KeyAvailable { get; } 例 ここで、C#でConsole.KeyAvailable()プロパティを実装する例を見てみましょう- using System; using System.Threading; class Demo { public static void Main (string[] args) { &n
-
C#のコンソールクラス
C#のConsoleクラスは、コンソールアプリケーションの標準の入力、出力、およびエラーストリームを表すために使用されます。 C#のコンソールクラスプロパティの例をいくつか見てみましょう- Console.CursorLeftプロパティ C#でコンソールのCursorLeftを変更するには、Console.CursorLeftプロパティを使用します。 例 例を見てみましょう- using System; class Demo { public static void Main (string[] args) { Cons