Peter Kurfer
d8d307545f
- Added Benchmarks - Added Nuke build - Refactored directory structure - Generated GitHub Actions config from Nuke - Added tool to handle benchmarking from Nuke
22 lines
No EOL
372 B
C#
22 lines
No EOL
372 B
C#
using Tand.Core.Api;
|
|
|
|
namespace Tand.Core.Tests
|
|
{
|
|
|
|
public interface ITandSample
|
|
{
|
|
[Tand(typeof(LogTarget<ITandSample>))]
|
|
int LogMyParams(string s, int i);
|
|
}
|
|
|
|
public class TandSample : ITandSample
|
|
{
|
|
|
|
private int _counter;
|
|
|
|
public int LogMyParams(string s, int i)
|
|
{
|
|
return ++_counter;
|
|
}
|
|
}
|
|
} |