You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a class, with a instance field of type IList, I set that property from inside the constructor using the "public static IList Properties(this Type type, params string[] names);" method from PropertyExtensions.cs in fasterflect. When I create some instances of my class, and put them into a List, I then get a missing member exception from fasterflect when I call fasterflects deepclone extension method on the list. For some reason, if I populate a HashSet with the same instances of my class, and deepclone the hashset I do not get the exception.
The text was updated successfully, but these errors were encountered:
I have a class, with a instance field of type IList, I set that property from inside the constructor using the "public static IList Properties(this Type type, params string[] names);" method from PropertyExtensions.cs in fasterflect. When I create some instances of my class, and put them into a List, I then get a missing member exception from fasterflect when I call fasterflects deepclone extension method on the list. For some reason, if I populate a HashSet with the same instances of my class, and deepclone the hashset I do not get the exception.
The text was updated successfully, but these errors were encountered: