Habanero.Smooth.AppDomainTypeSource.GetTypes C# (CSharp) Method

GetTypes() public method

public GetTypes ( ) : IEnumerable
return IEnumerable
        public IEnumerable<TypeWrapper> GetTypes()
        {
            return this.Where == null 
                    ? TypesImplementing() 
                    : TypesImplementing().Where(this.Where);
        }