
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
Char.IsNumber() Method in C#
The Char.IsNumber() method in C# is used to indicate whether the specified Unicode character is categorized as a number.
Syntax
Following is the syntax −
public static bool IsNumber (char ch);
Above, the parameter ch is the Unicode character to evaluate.
Example
Let us now see an example to implement the Char.IsNumber() method −
using System; public class Demo { public static void Main(){ bool res; char val = '2'; Console.WriteLine("Value = "+val); res = Char.IsNumber(val); Console.WriteLine("Is the value a number? = "+res); } }
Output
This will produce the following output −
Value = 2 Is the value a number? = True
Example
Let us now see another example −
using System; public class Demo { public static void Main(){ bool res; char val = 'P'; Console.WriteLine("Value = "+val); res = Char.IsNumber(val); Console.WriteLine("Is the value a number? = "+res); } }
Output
This will produce the following output −
Value = P Is the value a number? = False
Advertisements