Thursday, July 18, 2019

Validate Integer using Regular Expression in C#

public Boolean Intgr(string str)
  {
   try
   {
    double k = double.Parse(str);
    return true;
    
   }
   catch
   {
    return false;
   }

  }

No comments:

Post a Comment

Lab 09: Publish and subscribe to Event Grid events

  Microsoft Azure user interface Given the dynamic nature of Microsoft cloud tools, you might experience Azure UI changes that occur after t...