Files
BunifuUiCrack/Bunifu.Licensing/StringHandlerPolyfill.cs
T
hexadecimal e3c1cdea0e Add source
2025-04-24 20:51:29 +03:00

6 lines
268 B
C#

// This file ensures DefaultInterpolatedStringHandler is available throughout the project
// It's a polyfill that provides compatibility across different .NET versions
#if NETFRAMEWORK || NET5_0 || NET5_0_OR_NETFRAMEWORK
using System.Runtime.CompilerServices;
#endif