This code works in ObjC:
NSPopUpButton *p = [[NSPopUpButton alloc] init];
p.accessibilityIdentifier = @"hello";
NSString *result = p.accessibilityIdentifier;
But this does not in C#:
NSPopUpButton button = new NSPopUpButton ();
button.AccessibilityIdentifier = "hello";
var result = button.AccessibilityIdentifier;
It comes off the full set in:
@protocol NSAccessibility <NSObject>
@required
This code works in ObjC:
But this does not in C#:
It comes off the full set in: