Check if given string is number

PHOTO EMBED

Tue Feb 08 2022 13:07:16 GMT+0000 (Coordinated Universal Time)

Saved by @vooda #c#

static bool CheckIfNumber(string cardID)
{
  return cardID.All(c => Char.IsNumber(c));
}
content_copyCOPY