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

कंसोल। सी # में विधि साफ़ करें

C# में Console.Clear विधि का उपयोग कंसोल बफ़र और प्रदर्शन जानकारी की संबंधित कंसोल विंडो को साफ़ करने के लिए किया जाता है।

सिंटैक्स

निम्नलिखित वाक्य रचना है -

public static void Clear ();

उदाहरण

आइए अब कंसोल को लागू करने से पहले एक उदाहरण देखें। विधि साफ़ करें -

using System;
public class Demo {
   public static void Main(){
      Uri newURI1 = new Uri("https://www.tutorialspoint.com/");
      Console.WriteLine("URI = "+newURI1);
      Console.WriteLine("String representation = "+newURI1.ToString());
      Uri newURI2 = new Uri("https://www.tutorialspoint.com/jquery.htm#abcd");
      Console.WriteLine("\nURI = "+newURI2);
      Console.WriteLine("String representation = "+newURI2.ToString());
      if(newURI1.Equals(newURI2))
         Console.WriteLine("\nBoth the URIs are equal!");
      else
         Console.WriteLine("\nBoth the URIs aren't equal!");
      Uri res = newURI1.MakeRelativeUri(newURI2);
      Console.WriteLine("Relative uri = "+res);
}
}

आउटपुट

यह कंसोल का उपयोग करने से पहले निम्नलिखित आउटपुट का उत्पादन करेगा। क्लियर () -

URI = https://www.tutorialspoint.com/
String representation = https://www.tutorialspoint.com/
URI = https://www.tutorialspoint.com/jquery.htm#abcd
String representation = https://www.tutorialspoint.com/jquery.htm#abcd
Both the URIs aren't equal!
Relative uri = jquery.htm#abcd

उदाहरण

आइए अब कंसोल को लागू करने के लिए वही उदाहरण देखें। विधि साफ़ करें -

using System;
public class Demo {
   public static void Main(){
      Uri newURI1 = new Uri("https://www.tutorialspoint.com/");
      Console.WriteLine("URI = "+newURI1);
      Console.WriteLine("String representation = "+newURI1.ToString());
      Uri newURI2 = new Uri("https://www.tutorialspoint.com/jquery.htm#abcd");
      Console.WriteLine("\nURI = "+newURI2);
      Console.WriteLine("String representation = "+newURI2.ToString());
      if(newURI1.Equals(newURI2))
         Console.WriteLine("\nBoth the URIs are equal!");
      else
         Console.WriteLine("\nBoth the URIs aren't equal!");
      Uri res = newURI1.MakeRelativeUri(newURI2);
      Console.WriteLine("Relative uri = "+res);
      Console.Clear();
      Console.WriteLine("Console cleared now!");
   }
}

आउटपुट

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

Console cleared now!

  1. कंसोल.सेटबफरसाइज () सी # में विधि

    C# में Console.SetBufferSize() विधि का उपयोग स्क्रीन बफर क्षेत्र की ऊंचाई और चौड़ाई को निर्दिष्ट मानों पर सेट करने के लिए किया जाता है। सिंटैक्स वाक्य रचना इस प्रकार है - public static void SetBufferSize (int width, int height); ऊपर, पैरामीटर चौड़ाई बफर क्षेत्र की चौड़ाई है, जबकि ऊंचाई बफर क्षेत्र

  1. Console.ResetColor () विधि सी # में

    C# में Console.ResetColor() विधि का उपयोग अग्रभूमि और पृष्ठभूमि कंसोल रंगों को उनके डिफ़ॉल्ट पर सेट करने के लिए किया जाता है। सिंटैक्स वाक्य रचना इस प्रकार है - public static void ResetColor (); उदाहरण आइए अब C# - . में Console.ResetColor() विधि को लागू करने के लिए एक उदाहरण देखें using System; cl

  1. Console.MoveBufferArea () सी # में विधि

    C# में Console.MoveBufferArea() विधि का उपयोग स्क्रीन बफ़र के निर्दिष्ट स्रोत क्षेत्र को एक निर्दिष्ट गंतव्य क्षेत्र में कॉपी करने के लिए किया जाता है। सिंटैक्स वाक्य रचना इस प्रकार है - public static void MoveBufferArea (int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetL