LANCommander/LANCommander.SDK/Extensions/GuidExtensions.cs

11 lines
209 B
C#
Raw Permalink Normal View History

2025-02-04 21:37:07 -06:00
using System;
namespace LANCommander.SDK.Extensions;
public static class GuidExtensions
{
public static bool IsNullOrEmpty(this Guid guid)
{
return guid == null || guid == Guid.Empty;
}
}