Files
Stationeers-RemoteControl/Vendor/EmbedIO-3.5.2/Internal/LockableNameValueCollection.cs

9 lines
217 B
C#

using System.Collections.Specialized;
namespace EmbedIO.Internal
{
internal sealed class LockableNameValueCollection : NameValueCollection
{
public void MakeReadOnly() => IsReadOnly = true;
}
}