public UnmanagedResourceFolderTreeNode( UnmanagedResourceCollection resources)
     : base(TreeViewImage.Folder, resources)
 {
     this.EnableLatePopulate();
     this.resources = resources;
     this.Text = "Unmanaged resources";
 }
 public UnmanagedResourceFolderTreeNode(UnmanagedResourceCollection resources)
     : base(TreeViewImage.Folder, resources)
 {
     this.EnableLatePopulate();
     this.resources = resources;
     this.Text      = "Unmanaged resources";
 }
예제 #3
0
 public static bool Compare(this UnmanagedResourceCollection source, UnmanagedResourceCollection n, Func<UnmanagedResource, UnmanagedResource, Action<string, string>, bool> checkitem, Action<string, string> errAct)
 {
     return Compare<UnmanagedResource>(source,n,checkitem,errAct);
 }
예제 #4
0
 public static bool Compare(this UnmanagedResourceCollection source, UnmanagedResourceCollection n, Func<UnmanagedResource, UnmanagedResource, bool> checkitem)
 {
     return Compare<UnmanagedResource>(source,n,checkitem);
 }
예제 #5
0
 public static bool Compare(this UnmanagedResourceCollection source, UnmanagedResourceCollection n)
 {
     return Compare<UnmanagedResource>(source,n);
 }
예제 #6
0
 public static bool Compare(this UnmanagedResourceCollection source, UnmanagedResourceCollection n, Func <UnmanagedResource, UnmanagedResource, Action <string, string>, bool> checkitem, Action <string, string> errAct)
 {
     return(Compare <UnmanagedResource>(source, n, checkitem, errAct));
 }
예제 #7
0
 public static bool Compare(this UnmanagedResourceCollection source, UnmanagedResourceCollection n, Func <UnmanagedResource, UnmanagedResource, bool> checkitem)
 {
     return(Compare <UnmanagedResource>(source, n, checkitem));
 }
예제 #8
0
 public static bool Compare(this UnmanagedResourceCollection source, UnmanagedResourceCollection n)
 {
     return(Compare <UnmanagedResource>(source, n));
 }
        public virtual IUnmanagedResourceCollection TransformUnmanagedResourceCollection(IUnmanagedResourceCollection value)
        {
            IUnmanagedResource[] array = new IUnmanagedResource[value.Count];
            for (int i = 0; i < value.Count; i++)
            {
                array[i] = this.TransformUnmanagedResource(value[i]);
            }

            IUnmanagedResourceCollection target = new UnmanagedResourceCollection();
            target.AddRange(array);
            return target;
        }