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

25 строки
411 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
{
}
}