Skip to content

Instantly share code, notes, and snippets.

@davidsulpy
Last active October 4, 2015 20:47
Show Gist options
  • Save davidsulpy/2696550 to your computer and use it in GitHub Desktop.
Save davidsulpy/2696550 to your computer and use it in GitHub Desktop.
Immutable Password
class Password
{
readonly string unencryptedPassword;
Password(string unencryptedPassword)
{
unencryptedPassword = unencryptedPassword;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment