xamarin-macios/tests/generator/missing-export-property.cs

11 строки
224 B
C#

using Foundation;
namespace Test {
[BaseType (typeof (NSObject))]
[Protocol, Model]
public interface NSTextInputClient {
// missing [Export ("selectRange")] should report an error
NSRange SelectedRange { get; }
}
}