Horje
c# check if is float Code Example
c# check if is float
public bool IsFloatOrInt(string value) {
  int intValue;
  float floatValue;
  return Int32.TryParse(value, out intValue) || float.TryParse(value, out floatValue);
}




Csharp

Related
unity 2d detect click on sprite Code Example unity 2d detect click on sprite Code Example
how to convert angle to vector in c# Code Example how to convert angle to vector in c# Code Example
unity pause animator Code Example unity pause animator Code Example
c# print out Code Example c# print out Code Example
how to delay execution in c# Code Example how to delay execution in c# Code Example

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