mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
8b94837f18
fixes add visual validation border and validate functionality
7 lines
179 B
C#
7 lines
179 B
C#
namespace Azaion.Common.Extensions;
|
|
|
|
public static class EnumerableExtensions
|
|
{
|
|
public static bool In<T>(this T obj, params T[] objects) =>
|
|
objects.Contains(obj);
|
|
} |