Allen.Util.CSharpRefTree.PrjInfo.PrjInfo C# (CSharp) Метод

PrjInfo() публичный Метод

public PrjInfo ( Assembly ass ) : System.Collections.Generic
ass System.Reflection.Assembly
Результат System.Collections.Generic
        public PrjInfo(Assembly ass) : this()
        {

            this.AssemblyName = ass.GetName().Name;

            var refAssemblies = ass.GetReferencedAssemblies().Where(IsMatch);
            if (refAssemblies.Count() == 0) return;
            foreach (var refAss in refAssemblies)
            {
                this.OriginalRef.Add(refAss.Name);
            }


        }

Same methods

PrjInfo::PrjInfo ( ) : System.Collections.Generic
PrjInfo::PrjInfo ( string csprjPath ) : System.Collections.Generic