xamarin-macios/tests/generator/protocol-duplicate-method-d...

39 строки
594 B
C#

using System;
using System.Runtime.InteropServices;
#if !XAMCORE_2_0
#if MONOMAC
using MonoMac.Foundation;
using MonoMac.ObjCRuntime;
#else
using MonoTouch.Foundation;
using MonoTouch.ObjCRuntime;
#endif
#else
using Foundation;
using ObjCRuntime;
#endif
namespace Test
{
[Protocol]
public interface First
{
[Abstract]
[Export ("doit:withmore")]
void DoIt (int a, out int b);
}
[Protocol]
public interface Second {
[Abstract]
[Export ("doit:withmore")]
void DoIt (int a, int b);
}
[BaseType (typeof (NSObject))]
public partial interface Derived : First, Second {
}
}