S
Serj Kondryukov
I am novice in C#. I did write on C++ before.
In my current program i need to use big constant table. Each string is a
some struct what contain following fields:
MyEnum f1;
MyEnum f2;
bool f3;
double[] f4;
ushort[] f5;
Fields f1 and f2 have enum type what i define early. Last two fields is a
arrays by 9 items. Now i need get some f1, f2 and f3 values + some index and
find corresponding row in my table and corresponding index ushort and double
from last fields.
I don't want to put my table in external file. What offers do you have ? I
have some myself ideas but may be i don't know a some C# specifical features
for it.
Thank you.
In my current program i need to use big constant table. Each string is a
some struct what contain following fields:
MyEnum f1;
MyEnum f2;
bool f3;
double[] f4;
ushort[] f5;
Fields f1 and f2 have enum type what i define early. Last two fields is a
arrays by 9 items. Now i need get some f1, f2 and f3 values + some index and
find corresponding row in my table and corresponding index ushort and double
from last fields.
I don't want to put my table in external file. What offers do you have ? I
have some myself ideas but may be i don't know a some C# specifical features
for it.
Thank you.