本文整理汇总了C#中ILGen.EmitPropertySet方法的典型用法代码示例。如果您正苦于以下问题:C# ILGen.EmitPropertySet方法的具体用法?C# ILGen.EmitPropertySet怎么用?C# ILGen.EmitPropertySet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ILGen
的用法示例。
在下文中一共展示了ILGen.EmitPropertySet方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EmitNew
internal static void EmitNew(ILGen cg, Type tupleType, int start, int end) {
int size = end - start;
Debug.Assert(tupleType != null);
Debug.Assert(tupleType.IsSubclassOf(typeof(Tuple)));
cg.EmitNew(tupleType.GetConstructor(Type.EmptyTypes));
if (size > Tuple.MaxSize) {
int multiplier = 1;
while (size > Tuple.MaxSize) {
size = (size + Tuple.MaxSize - 1) / Tuple.MaxSize;
multiplier *= Tuple.MaxSize;
}
for (int i = 0; i < size; i++) {
int newStart = start + (i * multiplier);
int newEnd = System.Math.Min(end, start + ((i + 1) * multiplier));
PropertyInfo pi = tupleType.GetProperty("Item" + String.Format("{0:D3}", i));
// dup tuple that we originally constructed
cg.Emit(OpCodes.Dup);
// construct nested tuple
EmitNew(cg, pi.PropertyType, newStart, newEnd);
// save into original tuple
cg.EmitPropertySet(pi);
}
}
}