I want to include a large look-up table (100,000 of 3-byte values) inside a C# module.
Is there a compiler directive that will load binary data from an external file into a static string ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Why not just include the file into the assembly as an embedded resource, and then load it using
Assembly.GetManifestResourceStream? Then just load it from the stream into whatever in-memory data structure you want.