13 lines
210 B
C#
13 lines
210 B
C#
using SptCommon.Annotations;
|
|
|
|
namespace Core.Utils;
|
|
|
|
[Injectable]
|
|
public class CompareUtil
|
|
{
|
|
public bool RecursiveCompare(object v1, object v2)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|