1
14 7/8\ x 8 1/2\
I want to use a struct to constrain a result.
The result is a string composed of several strings of fixed length;
Let's say the string
Result is composed of 3 strings, each 4 char in length.
Can I build a struct that would enforce such a construct?
I tried putting string[] s = new string[4] in my struct but it wouldn't
let me.
The result is a string composed of several strings of fixed length;
Let's say the string
Result is composed of 3 strings, each 4 char in length.
Can I build a struct that would enforce such a construct?
I tried putting string[] s = new string[4] in my struct but it wouldn't
let me.