xamarin-macios/tests/generator/property-redefination-mac.cs

21 строка
407 B
C#

using Foundation;
namespace Test {
[BaseType (typeof (NSObject))]
[Protocol, Model]
public interface NSTextInputClient {
[Export ("selectedRange")]
NSRange SelectedRange { get; }
}
[BaseType (typeof (NSObject))]
public interface NSText {
[Export ("selectedRange")]
NSRange SelectedRange { get; set; }
}
[BaseType (typeof (NSText))]
public interface NSTextView : NSTextInputClient {
}
}