билдится на старом дотнете
This commit is contained in:
@@ -1,28 +1,30 @@
|
||||
using Example.Shared;
|
||||
using System;
|
||||
using Example.Shared;
|
||||
using mROA.Implementation.Attributes;
|
||||
|
||||
namespace Example.Backend;
|
||||
|
||||
[SharedObjectSingleton]
|
||||
public class LoadTestImp : ILoadTest
|
||||
namespace Example.Backend
|
||||
{
|
||||
public int Next(int last)
|
||||
[SharedObjectSingleton]
|
||||
public class LoadTestImp : ILoadTest
|
||||
{
|
||||
return last + 1;
|
||||
}
|
||||
public int Next(int last)
|
||||
{
|
||||
return last + 1;
|
||||
}
|
||||
|
||||
public int Last(int next)
|
||||
{
|
||||
return next - 1;
|
||||
}
|
||||
public int Last(int next)
|
||||
{
|
||||
return next - 1;
|
||||
}
|
||||
|
||||
public void C()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public void C()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void A()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
public void A()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user