| c# Programming Glossary: opcodes.ldarg_1Get an IDataReader from a typed List http://stackoverflow.com/questions/2258310/get-an-idatareader-from-a-typed-list  propertyInfo.DeclaringType generator.Emit OpCodes.Ldarg_1 if propertyInfo.PropertyType.IsClass  generator.Emit OpCodes.Castclass.. 
 Comparing 2 objects and retrieve a list of fields with different values http://stackoverflow.com/questions/3060382/comparing-2-objects-and-retrieve-a-list-of-fields-with-different-values  isValueType il.Emit OpCodes.Ldarga_S byte 1 else il.Emit OpCodes.Ldarg_1  il.EmitCall callType prop.GetGetMethod null  il.Emit OpCodes.Ceq.. isValueType il.Emit OpCodes.Ldarga_S byte 1 else il.Emit OpCodes.Ldarg_1   il.EmitCall callType prop.GetGetMethod null  il.EmitCall OpCodes.Call.. isValueType il.Emit OpCodes.Ldarga_S byte 1 else il.Emit OpCodes.Ldarg_1   il.EmitCall callType prop.GetGetMethod null  il.EmitCall OpCodes.Callvirt.. 
 Dynamically create a class in C# http://stackoverflow.com/questions/3862226/dynamically-create-a-class-in-c-sharp  modifyProperty setIl.Emit OpCodes.Ldarg_0 setIl.Emit OpCodes.Ldarg_1 setIl.Emit OpCodes.Stfld fieldBuilder setIl.Emit OpCodes.Nop.. 
 Looking for a fast and easy way to coalesce all properties on a POCO http://stackoverflow.com/questions/7422861/looking-for-a-fast-and-easy-way-to-coalesce-all-properties-on-a-poco  null   continue int instead of int etc skip   il.Emit OpCodes.Ldarg_1 target  il.Emit OpCodes.Ldarg_0 target source  il.EmitCall OpCodes.Callvirt.. 
 How can I write a generic container class that implements a given interface in C#? http://stackoverflow.com/questions/847809/how-can-i-write-a-generic-container-class-that-implements-a-given-interface-in-c   store the items il.Emit OpCodes.Ldarg_0 il.Emit OpCodes.Ldarg_1 il.Emit OpCodes.Stfld fld il.Emit OpCodes.Ret foreach var method.. i  load the arguments  switch i    case 0 il.Emit OpCodes.Ldarg_1 break  case 1 il.Emit OpCodes.Ldarg_2 break  case 2 il.Emit.. 
 |