Wesley Hamilton
Wesley Hamilton
https://github.com/buunguyen/fasterflect/blob/master/Fasterflect/Fasterflect/Extensions/Core/AttributeExtensions.cs ``` public static IDictionary MembersAndAttributes( this Type type, MemberTypes memberTypes, params Type[] attributeTypes ) { return type.MembersAndAttributes( memberTypes, Flags.InstanceAnyVisibility, null ); } ``` I believe this should be attributeTypes...
Can you put extension methods in their own namespace? The base Fasterflect namespace has all of these extensions for built in types like Type and object. I want is to...