
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 2587 Articles for Csharp

245 Views
The Console.SetBufferSize() Method in C# is used to set the height and width of the screen buffer area to the specified values.SyntaxThe syntax is as follows −public static void SetBufferSize (int width, int height);Above, the parameter width is the width of the buffer area, whereas height is the height of the buffer area.ExampleLet us now see an example to implement the Console.SetBufferSize() Method in C# −using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.White; Console.ForegroundColor = ConsoleColor.Red; Console.SetBufferSize(400, 400); while (true) ... Read More

354 Views
The Console.ResetColor() method in C# is used to set the foreground and background console colors to their defaults.SyntaxThe syntax is as follows −public static void ResetColor ();ExampleLet us now see an example to implement the Console.ResetColor() method in C# −using System; class Demo { public static void Main (string[] args) { Console.WriteLine ("At first, we have set colors here...After that, we will reset the colors to default."); Console.BackgroundColor = ConsoleColor.White; Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine ("Colors are set for this text"); Console.ResetColor(); ... Read More

1K+ Views
The Console.ReadLine() method in C# is used to read the next line of characters from the standard input stream.SyntaxThe syntax is as follows −public static string ReadLine ();ExampleLet us now see an example to implement the Console.ReadLine() method in C# −using System; public class Demo{ public static void Main(){ string str; Console.WriteLine("Enter any subject..."); str = Console.ReadLine(); Console.WriteLine("Entered subject = "+str); } }OutputThis will produce the following output −Enter any subject... Entered subject = Maths

1K+ Views
The Console.Read() method in C# is used to read the next character from the standard input stream.SyntaxThe syntax is as follows −public static int Read ();ExampleLet us now see an example to implement the Console.Read() method in C# −using System; public class Demo{ public static void Main(){ int val; Console.WriteLine("Enter a value"); val = Console.Read(); Console.WriteLine("Entered value: "+val); } }OutputThis will produce the following output. Let’s sayEnter a value Entered value: 53

276 Views
The Console.MoveBufferArea() method in C# is used to copy a specified source area of the screen buffer to a specified destination area.SyntaxThe syntax is as follows −public static void MoveBufferArea (int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop);Here, sourceLeft The leftmost column of the source area.sourceTop The topmost row of the source area.sourceWidth The number of columns in the source area.sourceHeight The number of rows in the source area.targetLeft The leftmost ... Read More

469 Views
The Console.KeyAvailable() property in C# is used to get a value indicating whether a key press is available in the input stream.SyntaxThe syntax is as follows −public static bool KeyAvailable { get; }ExampleLet us now see an example to implement the Console.KeyAvailable() property in C# −using System; using System.Threading; class Demo { public static void Main (string[] args) { ConsoleKeyInfo cs = new ConsoleKeyInfo(); do { Console.WriteLine("Press a key to display; "+ "press the 'Q' key to quit."); while (Console.KeyAvailable == false)Thread.Sleep(100); ... Read More

2K+ Views
The Console class in C# is used to represent the standard input, output, and error streams for console applications.Let us see some examples of Console class properties in C# −Console.CursorLeft propertyTo change the CursorLeft of the Console in C#, use the Console.CursorLeft property.ExampleLet us see an example −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("Foreground color changed = "+Console.ForegroundColor); Console.CursorLeft = 30; Console.Write("CursorLeft position: "+Console.CursorLeft); ... Read More

422 Views
The Decimal Struct in C# Represents a decimal floating-point number. The Decimal value type represents decimal numbers ranging from positive 79, 228, 162, 514, 264, 337, 593, 543, 950, 335 to negative 79, 228, 162, 514, 264, 337, 593, 543, 950, 335. The default value of a Decimal is 0.Let us now see some examples of the methods in Decimal Struct −Decimal.Add()The Decimal.Add() method in C# is used to add two specified Decimal values.SyntaxFollowing is the syntax −public static decimal Add (decimal val1, decimal val2);Above, va1 is the first decimal to add, whereas val2 is the second decimal to be ... Read More

435 Views
The UInt64 struct represents a 64-bit unsigned integer. The UInt64 value type represents unsigned integers with values ranging from 0 to 18, 446, 744, 073, 709, 551, 615.Let us now see some examples of UInt64 Struct methods −UInt64.CompareTo()The UInt64.CompareTo() method in C# is used to compare the current instance to a specified object or UInt64 and returns an indication of their relative values.SyntaxFollowing is the syntax −public int CompareTo (object val); public int CompareTo (ulong val;Above, the value for the 1st syntax is an object to compare. The value for 2nd syntax is an unsigned integer to compare.The return value ... Read More

76 Views
The Uri.IsWellFormedOriginalString() method in C# indicates whether the string used to construct this Uri was well-formed and is not required to be further escaped.SyntaxFollowing is the syntax −public bool IsWellFormedOriginalString ();ExampleLet us now see an example to implement the Uri.IsWellFormedOriginalString() method −using System; public class Demo { public static void Main(){ Uri newURI1 = new Uri("https://www.tutorialspoint.com/index.htm"); Console.WriteLine("URI = "+newURI1); Uri newURI2 = new Uri("https://www.qries.com/"); Console.WriteLine("URI = "+newURI2); if(newURI1.Equals(newURI2)) Console.WriteLine("Both the URIs are equal!"); else ... Read More