We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9243cd0 commit c64849eCopy full SHA for c64849e
2 files changed
ExtendedSystemObjects/CategorizedDictionary.cs
@@ -126,7 +126,7 @@ public IEnumerable<TK> GetKeys()
126
_lock.EnterReadLock();
127
try
128
{
129
- return _data.Keys; // Create a copy for thread safety
+ return _data.Keys.ToList(); ; ; // Create a copy for thread safety
130
}
131
finally
132
ExtendedSystemObjects/VaultMetadata.cs
@@ -15,6 +15,9 @@
15
16
namespace ExtendedSystemObjects
17
18
+ /// <summary>
19
+ /// Meta Data for thje clas
20
+ /// </summary>
21
public sealed class VaultMetadata
22
23
/// <summary>
0 commit comments