1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

String.Interns fix

This commit is contained in:
Brian Fiete 2024-03-16 14:57:28 -04:00
parent 7656d94ff5
commit 1334763c62

View file

@ -10,7 +10,7 @@ using System.Threading;
using System.Interop; using System.Interop;
using System; using System;
using internal System.String; //using internal System.String;
namespace System namespace System
{ {
@ -48,7 +48,7 @@ namespace System
NullTerminate = 1 NullTerminate = 1
} }
internal struct Interns public struct Interns
{ {
public static Monitor sMonitor = new Monitor() ~ delete _; public static Monitor sMonitor = new Monitor() ~ delete _;
public static HashSet<String> sInterns = new .() ~ delete _; public static HashSet<String> sInterns = new .() ~ delete _;