8 lines
194 B
C#
8 lines
194 B
C#
namespace Engine.Core;
|
|
|
|
public static class IdentifiableExtensions
|
|
{
|
|
public static bool IsIdentical(this IIdentifiable? left, IIdentifiable? right)
|
|
=> left?.CompareTo(right) == 0;
|
|
}
|