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

12 строки
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; }
}
}