5 lines
80 B
C#
5 lines
80 B
C#
|
public interface IToStringImplementation<T>
|
||
|
{
|
||
|
string DoToString(in T input);
|
||
|
}
|