How I can check if my string only contain numbers?
I don\'t remember. Something like isnumeric?
public bool IsNumeric(string str) { return str.All(c => "0123456789".Contains(c); }