| c# Programming Glossary: person.nameHow to return anonymous type from c# method that uses LINQ to SQL [duplicate] http://stackoverflow.com/questions/1070526/how-to-return-anonymous-type-from-c-sharp-method-that-uses-linq-to-sql 
 Passing properties by reference in C# http://stackoverflow.com/questions/1402803/passing-properties-by-reference-in-c-sharp  return input return output void Main var person new Person person.Name GetString test person.Name Debug.Assert person.Name test 2... void Main var person new Person person.Name GetString test person.Name Debug.Assert person.Name test 2. Delegates void GetString string.. Person person.Name GetString test person.Name Debug.Assert person.Name test 2. Delegates void GetString string input Func string getOutput.. 
 Why is lock(this) {…} bad? http://stackoverflow.com/questions/251391/why-is-lockthis-bad  subject A lock does not make the object read only. lock person.Name  while person.Age 23   There will be a lock on 'person' due.. person  person.Age  if person.Age 18   Changing the 'person.Name' value doesn't change the lock...  person.Name Nancy Smith .. the 'person.Name' value doesn't change the lock...  person.Name Nancy Smith   Console.WriteLine 0 is 1 years old. person.Name.. 
 Return/consume dynamic anonymous type across assembly boundaries http://stackoverflow.com/questions/2993200/return-consume-dynamic-anonymous-type-across-assembly-boundaries  void UsePerson  var person GetPerson Console.WriteLine person.Name public static dynamic GetPerson  return new Name Foo Age 30.. static dynamic GetPerson dynamic person new ExpandoObject person.Name Foo person.Age 30 return person In general anonymous types should.. 
 LINQ Inner-Join vs Left-Join http://stackoverflow.com/questions/525194/linq-inner-join-vs-left-join   person person  pet pet.Owner  person pet  new OwnerName person.Name Pet pet.Name .ToList  c# .net linq left join   share improve.. person  pet pet.Owner  person petCollection  new OwnerName person.Name   Pet PetCollection.Select p p.Name    .DefaultIfEmpty  .ToList.. 
 What are the advantages of delegates? [duplicate] http://stackoverflow.com/questions/639320/what-are-the-advantages-of-delegates  people.Where person person.Age 18  .Select person person.Name That can also be represented as a query expression but let's.. 
 |