You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error message : 'TestClassProxy' does not implement interface member 'ISave.Save(int)'
Test code:
namespace Test
{
public class BaseTestClass
{
public IEnumerable Save(IEnumerable toSave)
{
return toSave;
}
public int Save(int toSave)
{
return toSave;
}
}
public interface ISave
{
int Save(int toSave);
}
public class TestClass : BaseTestClass, ISave { }
[ProxyInterfaceGenerator.Proxy(typeof(TestClass), true)]
public partial interface ITestClass { }
}
The text was updated successfully, but these errors were encountered:
Error message : 'TestClassProxy' does not implement interface member 'ISave.Save(int)'
Test code:
namespace Test
{
public class BaseTestClass
{
public IEnumerable Save(IEnumerable toSave)
{
return toSave;
}
}
The text was updated successfully, but these errors were encountered: