Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में कंसोल के कर्सरटॉप को कैसे बदलें?

C# में कंसोल के CursorTop को बदलने के लिए, Console.CursorTop प्रॉपर्टी का उपयोग करें

उदाहरण

आइए अब एक उदाहरण देखें -

using System;
class Demo {
   public static void Main (string[] args) {
      Console.BackgroundColor = ConsoleColor.Blue;
      Console.WriteLine("Background color changed = "+Console.BackgroundColor);
      Console.ForegroundColor = ConsoleColor.Yellow;
      Console.WriteLine("\nForeground color changed = "+Console.ForegroundColor);
      Console.CursorTop = 20;
      Console.WriteLine("\nCursorTop = "+Console.CursorTop);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

सी # में कंसोल के कर्सरटॉप को कैसे बदलें?


  1. सी # में कंसोल के कर्सर लेफ्ट को कैसे बदलें?

    C# में कंसोल के CursorLeft को बदलने के लिए, Console.CursorLeft प्रॉपर्टी का उपयोग करें। उदाहरण आइए एक उदाहरण देखें - using System; class Demo {    public static void Main (string[] args) {       Console.BackgroundColor = ConsoleColor.Blue;       Console.Write

  1. सी # कंसोल में टेक्स्ट का अग्रभूमि रंग कैसे बदलें?

    टेक्स्ट का फ़ोरग्राउंड कलर बदलने के लिए, C# में Console.ForegroundColor प्रॉपर्टी का इस्तेमाल करें। उदाहरण आइए एक उदाहरण देखें - using System; class Demo {    public static void Main (string[] args) {       Console.BackgroundColor = ConsoleColor.Blue;       C

  1. टेक्स्ट का कैपिटलाइज़ेशन कैसे बदलें

    कुछ उपयोगकर्ता प्रश्नों के साथ हमसे संपर्क कर रहे हैं, पूछ रहे हैं कि क्या माइक्रोसॉफ्ट वर्ड, Google डॉक्स में या टेक्स्ट एडिटर का उपयोग किए बिना भी लोअरकेस अक्षरों को अपरकेस (या इसके विपरीत) में बदलने का कोई तरीका है। कुछ प्रभावित उपयोगकर्ता हम गलत कैपिटलाइज़ेशन के साथ गलती से टाइप किए गए टेक्स्ट क