13 lines
218 B
C#
13 lines
218 B
C#
using SptCommon.Annotations;
|
|
|
|
namespace Core.Helpers;
|
|
|
|
[Injectable]
|
|
public class UtilityHelper
|
|
{
|
|
public List<T> ArrayIntersect<T>(List<T> a, List<T> b)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|