Add CheckDictionary (unused)

This commit is contained in:
Matt Nadareski
2024-10-31 22:49:57 -04:00
parent 5587c79ac5
commit 86feb930a8

View File

@@ -0,0 +1,11 @@
namespace BinaryObjectScanner
{
/// <summary>
/// Represents a mapping from file to a set of protections
/// </summary>
#if NET20 || NET35
public class CheckDictionary<T> : System.Collections.Generic.Dictionary<T, string> where T : notnull { }
#else
public class CheckDictionary<T> : System.Collections.Concurrent.ConcurrentDictionary<T, string> where T : notnull { }
#endif
}