-
Notifications
You must be signed in to change notification settings - Fork 0
API Host StringPoolingStrategy
Liu.Yandong.Hanks edited this page Aug 21, 2026
·
3 revisions
Controls how CLR strings are wrapped as runtime StringValue objects.
Namespace: AuroraScript. Kind: enum.
Back to .NET Host API Reference
Controls how CLR strings are wrapped as runtime StringValue objects.
Always creates a new StringValue wrapper.
var value = StringPoolingStrategy.None;Uses the runtime string pool with weak references to reuse wrappers.
var value = StringPoolingStrategy.Intern;AuroraScript.JIT 4.0.0 · Documentation Home · Repository · MIT License