29 lines
583 B
C#
29 lines
583 B
C#
namespace isn.tests
|
|
{
|
|
internal class Body : IBody
|
|
{
|
|
static public Ring One { get ;}
|
|
|
|
public T Action<T>(T v)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
}
|
|
internal class Ring : Body, IRing
|
|
{
|
|
public static IRing Zero => throw new System.NotImplementedException();
|
|
|
|
|
|
public IRing Add(IRing unity)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public IRing Mult<TBody>(TBody v)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
}
|
|
} |