mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
6 lines
189 B
C#
6 lines
189 B
C#
namespace RGB.NET.Core;
|
|
|
|
public static class ReferenceCountingExtension
|
|
{
|
|
public static bool HasActiveReferences(this IReferenceCounting target) => target.ActiveReferenceCount > 0;
|
|
} |