Skip to content

Instantly share code, notes, and snippets.

@janus007
Created October 12, 2016 19: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 janus007/32911e855c5da930d1e9c9299a261014 to your computer and use it in GitHub Desktop.
Save janus007/32911e855c5da930d1e9c9299a261014 to your computer and use it in GitHub Desktop.
Username.cs
class Username
{
string _value;
public override string ToString()
{
return this.value.ToString();
}
public Username(string username)
{
_value = username;
Validate();
}
void Validate()
{
if(_username.length < 3)
if(_username.contains.....)
....
throw ValidationException(....
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment