Skip to content

Instantly share code, notes, and snippets.

View zybroxz's full-sized avatar
🏠
Working from home

zybroxz

🏠
Working from home
View GitHub Profile
Update nuget.exe
nuget.exe update -self
Update source credentials so you don't have to keep entering them over and over
nuget.exe sources Update||Add -Name sourceNameHere -UserName userNameHere -Password passwordHere -Source sourceUrlHere
@AndyStewart
AndyStewart / Contact.cs
Last active October 5, 2016 13:11
Builder Pattern
public class Contact
{
public Contact(string firstname, string surname, string address)
{
this.Firstname = firstname;
this.Surname = surname;
this.Address = address;
}
public string Firstname { get; private set; }
public string Surname { get; private set; }