mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-08 18:06:34 +00:00
Add CheckDictionary (unused)
This commit is contained in:
11
BinaryObjectScanner/CheckDictionary.cs
Normal file
11
BinaryObjectScanner/CheckDictionary.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user