From 86feb930a8e069daea6ba3055b78ed735365e72d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 31 Oct 2024 22:49:57 -0400 Subject: [PATCH] Add CheckDictionary (unused) --- BinaryObjectScanner/CheckDictionary.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 BinaryObjectScanner/CheckDictionary.cs diff --git a/BinaryObjectScanner/CheckDictionary.cs b/BinaryObjectScanner/CheckDictionary.cs new file mode 100644 index 00000000..1891e415 --- /dev/null +++ b/BinaryObjectScanner/CheckDictionary.cs @@ -0,0 +1,11 @@ +namespace BinaryObjectScanner +{ + /// + /// Represents a mapping from file to a set of protections + /// +#if NET20 || NET35 + public class CheckDictionary : System.Collections.Generic.Dictionary where T : notnull { } +#else + public class CheckDictionary : System.Collections.Concurrent.ConcurrentDictionary where T : notnull { } +#endif +} \ No newline at end of file