Horje
Check if string consists only of desired char Code Example
Check if string consists only of desired char
bool ConsistsOnly(string input, char wanted){
	input = input.Trim();
	foreach(char current in input){
    	if(current != wanted){
        	return false;
        }
    }
    return true;
}




Csharp

Related
datetime check null c# Code Example datetime check null c# Code Example
how to duplicate a clip in premiere pro Code Example how to duplicate a clip in premiere pro Code Example
euler to quaternion Code Example euler to quaternion Code Example
vscode unfold all Code Example vscode unfold all Code Example
unity check if swipe not tap Code Example unity check if swipe not tap Code Example

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