Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Last active January 13, 2018 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitvijay/0b555d043a64beca3bb005836b3aeb4c to your computer and use it in GitHub Desktop.
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