This commit is contained in:
2021-09-03 03:07:58 +01:00
parent a92bee32e1
commit 71de903f13
5 changed files with 99 additions and 1 deletions

12
test/isn.tests/IBody.cs Normal file
View File

@ -0,0 +1,12 @@
namespace isn.tests
{
internal interface IBody
{
/// <summary>
/// The mult
/// </summary>
/// <returns></returns>
T Action<T>(T v);
}
}