Please pardon my igorance in regards to the allocation of string data in C#.
I want to store user data strings that will not be moved or reinitalized between runtimes, and prefer not to use a SD card.
I would think the data would need to be stored in a static, compile-time, location and not a dynamic, runtime, location. The data I want to store is string data, but a byte arrays would work if that is easier to allocate space for at compile-time and not runtime.
Hi Carl. You said static data and compile time, but was not clear if that data needed to change and be preserved. If no, then static and/or const vars in your program would work also.