Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
internal class User { internal string _username, _password, _token; internal User(string username, string password, string token) { _username = username; _password = password; _token = token; internal string Username { get { return _username; } } internal string Password { get { return _password; } } internal string Token { get { return _token; } } }
This paste will be private.
From the Design Piracy series on my blog: