11 lines
209 B
C#
11 lines
209 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace LANCommander.SDK.Extensions;
|
||
|
|
|
||
|
|
public static class GuidExtensions
|
||
|
|
{
|
||
|
|
public static bool IsNullOrEmpty(this Guid guid)
|
||
|
|
{
|
||
|
|
return guid == null || guid == Guid.Empty;
|
||
|
|
}
|
||
|
|
}
|