Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Char.IsLower() Method in C#
The Char.IsLower() method in C# is used to indicate whether the specified Unicode character is categorized as a lowercase letter.
Syntax
Following is the syntax −
public static bool IsLower (char ch);
Above, the parameter ch is the Unicode character to evaluate.
Example
Let us now see an example to implement the Char.IsLower() method −
using System;
public class Demo {
public static void Main(){
bool res;
char val = 'K';
Console.WriteLine("Value = "+val);
res = Char.IsLower(val);
Console.WriteLine("Is the value a lowercase letter? = "+res);
}
}
Output
This will produce the following output −
Value = K Is the value a lowercase letter? = False
Example
Let us now see another example −
using System;
public class Demo {
public static void Main(){
bool res;
char val = 'd';
Console.WriteLine("Value = "+val);
res = Char.IsLower(val);
Console.WriteLine("Is the value a lowercase letter? = "+res);
}
}
Output
This will produce the following output −
Value = d Is the value a lowercase letter? = True
Advertisements
