8 lines
157 B
C#
8 lines
157 B
C#
|
|
namespace SJK.Functional;
|
||
|
|
|
||
|
|
public static class TupleExtensions
|
||
|
|
{
|
||
|
|
public static (T1, T2) ToTuple<T1, T2>(this T1 first, T2 second) => (first, second);
|
||
|
|
}
|
||
|
|
|