Horje
c# check word length Code Example
c# check lenght
'something'.Length; //Returns the length of whatever you check
c# check word length
Console.Write("Write a word ");
string Word = Console.ReadLine();

Console.WriteLine("The word you wrote has " + Word.Length + " characters in it");

for (int i = 0; i < Word.Length; i++)
{
	Console.WriteLine("Index " + i + " is " + Word[i]);
}




Csharp

Related
c# sort a list of objects Code Example c# sort a list of objects Code Example
c# how to use or operator on integers in while loop Code Example c# how to use or operator on integers in while loop Code Example
input field to float unity Code Example input field to float unity Code Example
sqlite dapper bulkcopy Code Example sqlite dapper bulkcopy Code Example
matric multiplication Code Example matric multiplication Code Example

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