Ejemplo n.º 1
0
        /// <summary>
        /// <para>Find members of the given type, while providing good error messages based on the following search filters provided.</para>
        /// </summary>
        public static MemberFinder Start <T>()
        {
            var cache = Cache <MemberFinder> .Claim();

            return(cache.Value.Start(typeof(T), cache));
        }
Ejemplo n.º 2
0
        /// <summary>
        /// <para>Find members of the given type, while providing good error messages based on the following search filters provided.</para>
        /// </summary>
        public static MemberFinder Start(Type type)
        {
            var cache = Cache <MemberFinder> .Claim();

            return(cache.Value.Start(type, cache));
        }