當前位置: 首頁>>代碼示例>>C#>>正文


C# TypeDefinition.Clone方法代碼示例

本文整理匯總了C#中Mono.Cecil.TypeDefinition.Clone方法的典型用法代碼示例。如果您正苦於以下問題:C# TypeDefinition.Clone方法的具體用法?C# TypeDefinition.Clone怎麽用?C# TypeDefinition.Clone使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Mono.Cecil.TypeDefinition的用法示例。


在下文中一共展示了TypeDefinition.Clone方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: VisitTypeDefinition

		public override void VisitTypeDefinition (TypeDefinition type)
		{
			if (type.Name == Context.MainTypeName) {
				bool clone = (type != Context.MainType);

				Console.WriteLine ("Found main type in assembly {0}. clone is {1}", type.Module.Assembly.Name.Name, clone);

				foreach (MethodDefinition method in type.Methods) {
					MethodDefinition md = Context.InternalSymbols.InsertMethod (method, clone);
					if (md != null) {
						if (clone) {
							Context.MainType.Methods.Add (md);
						}
					} else {
						Context.LinkFailed = true;
					}
				}

				foreach (FieldDefinition field in type.Fields) {
					FieldDefinition fd = Context.InternalSymbols.InsertField (field, clone);
					if (fd != null) {
						if (clone) {
							Context.MainType.Fields.Add (fd);
						}
					} else {
						Context.LinkFailed = true;
					}
				}
			} else if (!Target.MainModule.Types.Contains (type) && type.DeclaringType == null) {
				//not nested
				TypeDefinition td = type.Clone ();
				Target.MainModule.Types.Add (td);
				foreach (TypeDefinition nested in td.NestedTypes)
					Target.MainModule.Types.Add (nested);
			}
		}
開發者ID:transformersprimeabcxyz,項目名稱:cecil-old,代碼行數:36,代碼來源:ReflectionMerger.cs

示例2: VisitTypeDefinition

		public override void VisitTypeDefinition (TypeDefinition type)
		{
			if (!Target.MainModule.Types.Contains (type) && type.DeclaringType == null)
				AddTypeDefinition (type.Clone ());
		}
開發者ID:transformersprimeabcxyz,項目名稱:cecil-old,代碼行數:5,代碼來源:ReflectionMerger.cs

示例3: addType

 public void addType(TypeDefinition typeToAdd)
 {
     mainModule.Types.Add(typeToAdd.Clone());
 }
開發者ID:o2platform,項目名稱:O2.Platform.Projects.Misc_and_Legacy,代碼行數:4,代碼來源:CecilAssemblyBuilder.cs


注:本文中的Mono.Cecil.TypeDefinition.Clone方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。