I am running into the limit of the string table. Does anyone know is the size of the table able to be changed?
Or if not, am I able to inspect the how of the table is used/available so that I can refactor my code accordingly?
Thanks
I am running into the limit of the string table. Does anyone know is the size of the table able to be changed?
Or if not, am I able to inspect the how of the table is used/available so that I can refactor my code accordingly?
Thanks
From the TinyCLR limitations documentation…
- Each assembly is limited to 64KB. If you have gigantic code, just split your solution into multiple assemblies. This approach improves code maintainability as well. Resource files are not subject to this limitation, so if you are adding large lookup tables or binary objects, include them as a resource.
That doesnt really address my question about any technique for monitoring the amount of the string table being utilized.
Sorry, I did my best to understand your question…