Microsoft.VisualStudio.Project.EnumFORMATETC.EnumFORMATETC C# (CSharp) Method

EnumFORMATETC() public method

public EnumFORMATETC ( DATADIR dir, IEnumerable cache ) : System
dir DATADIR
cache IEnumerable
return System
        public EnumFORMATETC(DATADIR dir, IEnumerable cache)
        {
            if (cache == null)
                throw new ArgumentNullException("cache");

            this.cache = cache;
            this.dir = dir;
            e = cache.GetEnumerator();
        }