AmitDiwan has Published 10740 Articles

Uri.IsBaseOf(Uri) Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 07:08:36

189 Views

The Uri.IsBaseOf() method in C# is used to determine whether the current Uri instance is a base of the specified Uri instance.SyntaxFollowing is the syntax −public bool IsBaseOf (Uri uri);Above, the parameter Uri is the specified Uri instance to test.ExampleLet us now see an example to implement the Uri.IsBaseOf() method ... Read More

MathF.Ceiling() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 07:06:30

423 Views

The MathF.Ceiling() method in C# is used to find the smallest integer greater than or equal to the float value in the argument.SyntaxFollowing is the syntax −public static float Ceiling (float val);Above, Val is the floating-point value.ExampleLet us now see an example to implement the MathF.Ceiling() method −using System; class ... Read More

MathF.Cbrt() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 07:05:14

130 Views

The MathF.Cbrt() method in C# is used to return the cube root of a floating-point value.SyntaxFollowing is the syntax −public static float Cbrt (float val);ExampleLet us now see an example to implement the MathF.Cbrt() method −using System; class Demo {    public static void Main(){       float val1 ... Read More

Char.IsNumber() Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 07:04:02

420 Views

The Char.IsNumber() method in C# is used to indicate whether the specified Unicode character is categorized as a number.SyntaxFollowing is the syntax −public static bool IsNumber (char ch);Above, the parameter ch is the Unicode character to evaluate.ExampleLet us now see an example to implement the Char.IsNumber() method −using System; public ... Read More

MathF.Pow() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 07:02:54

285 Views

The MathF.Pow() method in C# is used to compute a number raise to the power of another number.SyntaxFollowing is the syntax −public static float Pow (float val1, float val2);Above, val1 is the floating-point number raised to a power. The val2 parameter is the power or exponent.ExampleLet us now see an ... Read More

How to change the CursorSize of the Console in C#?

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 07:01:33

252 Views

To change the CursorSize of the Console in C#, use the Console.CursorSize property in C#.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 ... Read More

How to change the CursorLeft of the Console in C#?

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 07:00:13

337 Views

To 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; ... Read More

How to change the Foreground Color of Text in C# Console?

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:58:27

10K+ Views

To change the Foreground Color of text, use the Console.ForegroundColor property in C#.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; ... Read More

How to change BufferWidth of the Console in C#?

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:56:55

198 Views

To change the BufferWidth of the Console, use the Console.BufferWidth property.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);       Console.BufferHeight = 250;       ... Read More

Char.IsLetter() Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:54:36

2K+ Views

The Char.IsLetter() method in C# is used to indicate whether the specified Unicode character is categorized as a Unicode letter.SyntaxFollowing is the syntax −public static bool IsLetter (char ch);Above, the parameter ch is the Unicode character to evaluate.ExampleLet us now see an example to implement the Char.IsLetter() method −using System; ... Read More

Advertisements