[IronPython] Using Python special methods in C# GetCustomMember(string name) - gets a 1st try at all attribute access (e.g. __getattribute__) GetBoundMember(string name) - gets a last try at attribute access (e.g. __getattr__) SetMember(string name, object value) - gets 1st try at all attribute sets (e.g. __setattr__) SetMemberAfter(string name, object value) - gets the last try at attribute sets (no Python equivalent, runs if no .NET binding is available) DeleteMember(string name) - runs for deletes (__delattr__, there are no .NET deletes so no before/after semantics) By laughingboyin Public bookmarkswith .netcsharpipython