xamarin-macios/tests/generator/ghissue9065.cs

14 строки
236 B
C#

using Foundation;
using ObjCRuntime;
namespace GHIssue9065 {
[Sealed]
[BaseType (typeof (NSObject))]
interface Widget : INSCopying {
[Export ("doSomething:atIndex:")]
[Static]
void DoSomething (NSObject obj, int index);
}
}