Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Last active January 13, 2018 23:38
Show Gist options
  • Select an option

  • Save ankitvijay/0b555d043a64beca3bb005836b3aeb4c to your computer and use it in GitHub Desktop.

Select an option

Save ankitvijay/0b555d043a64beca3bb005836b3aeb4c to your computer and use it in GitHub Desktop.
Static Using Example 3
namespace staticUsingExample
{
public static class IdValidationHelper
{
public static bool IsValid(string id)
{
bool isValid = false;
// Validate id
return isValid;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment