예제 #1
0
 public int Clone(out IVsEnumDependencies ppIVsEnumDependencies){
   ppIVsEnumDependencies = new DependencyEnumerator(referencedProjects, currentIndex);
   return 0;
 }
예제 #2
0
 public int EnumDependencies(out IVsEnumDependencies ppIVsEnumDependencies){
   ppIVsEnumDependencies = new DependencyEnumerator(GetReferencedProjects((XmlElement) this.projFile.SelectSingleNode("VisualStudioProject")));
   return 0;
 }