Inheritance: MetadataShallowCopier
コード例 #1
0
ファイル: Copier.cs プロジェクト: riverar/devtools
 /// <summary>
 /// 
 /// </summary>
 /// <param name="targetHost">An object representing the application that will host the copies made by this copier.</param>
 /// <param name="shallowCopier"></param>
 protected CodeDeepCopier(IMetadataHost targetHost, CodeShallowCopier shallowCopier)
     : base(targetHost, shallowCopier)
 {
     this.shallowCopier = shallowCopier;
 }
コード例 #2
0
ファイル: Copier.cs プロジェクト: Refresh06/visualmutator
 /// <summary>
 /// 
 /// </summary>
 /// <param name="targetHost">An object representing the application that will host the copies made by this copier.</param>
 /// <param name="shallowCopier"></param>
 protected CodeDeepCopier(IMetadataHost targetHost, CodeShallowCopier shallowCopier)
   : base(targetHost, shallowCopier) {
   Contract.Requires(targetHost != null);
   Contract.Requires(shallowCopier != null);
   this.shallowCopier = shallowCopier;
 }