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
AmitDiwan has Published 10740 Articles
AmitDiwan
247 Views
To change the CursorTop of the Console in C#, use the Console.CursorTop propertyExampleLet us now 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 = ... Read More
AmitDiwan
158 Views
To change the BufferHeight of the Console, use the Console.BufferHeight property in C#.ExampleLet us now see an example −using System; class Demo { public static void Main (string[] args) { Console.BufferHeight = 200; Console.WriteLine("Buffer Height = "+Console.BufferHeight); } }OutputThis will produce the following output −Buffer Height = 200
AmitDiwan
2K+ Views
To change the background color of text in Console, use the Console.BackgroundColor Property in C#.ExampleLet us now see an example −using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); } }OutputThis will produce the following output −
AmitDiwan
120 Views
The MathF.Exp() method in C# returns the raised to the specified power.SyntaxFollowing is the syntax −public static float Exp (float val);Above, Val is the floating-point number.ExampleLet us now see an example to implement the MathF.Exp() method −using System; class Demo { public static void Main(){ float ... Read More
AmitDiwan
86 Views
The MathF.Cosh() method in C# is used to return the hyperbolic cosine of a floating-point value.SyntaxFollowing is the syntax −public static float Cosh (float val);Above, Val is the floating-point number.ExampleLet us now see an example to implement the MathF.Cosh() method −using System; class Demo { public static void Main(){ ... Read More
AmitDiwan
146 Views
The MathF.Cos() method in C# returns the cosine of a given float value argument.SyntaxFollowing is the syntax −public static float Cos (float val);Above, Val is the floating-point value.ExampleLet us now see an example to implement the MathF.Cos() method −using System; class Demo { public static void Main(){ ... Read More
AmitDiwan
131 Views
The Uri.IsHexDigit() method in C# determines whether a specified character is a valid hexadecimal digit.SyntaxFollowing is the syntax −public static bool IsHexDigit (char ch);Above, the parameter ch is the character to validate.ExampleLet us now see an example to implement the Uri.IsHexDigit() method −using System; public class Demo { public ... Read More
AmitDiwan
244 Views
Queue.CopyTo(T[], Int32) Method is used to copy the Queue elements to a 1-D array.ExampleLet us now see an example −using System; using System.Collections.Generic; public class Demo{ public static void Main(){ Queue queue = new Queue(); queue.Enqueue("K"); queue.Enqueue("T"); ... Read More
AmitDiwan
299 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 ... Read More
AmitDiwan
394 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[] ... Read More