Horje
c# capitalize first letter of each word in a string Code Example
c# capitalize first letter of each word in a string
string s = "THIS IS MY TEXT RIGHT NOW";
s = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(s.ToLower());
c# capitalize first letter of each word in a string
string s = "THIS IS MY TEXT RIGHT NOW";

s = System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(s.ToLower());




Csharp

Related
c# Select MSSQL Code Example c# Select MSSQL Code Example
how to save a dictionary as a csv file in c# Code Example how to save a dictionary as a csv file in c# Code Example
how to check if the value is alphabet only in c# Code Example how to check if the value is alphabet only in c# Code Example
checking if a list contains a value unity Code Example checking if a list contains a value unity Code Example
how to check that string has only alphabet in c# Code Example how to check that string has only alphabet in c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12