i tried this :
and this :
and both dont work....
how can i write this right?
thx
C#:
public class myClass {
private const string [] alphabeths = {"a", "b", "c"};
C#:
public class myClass {
private string [] alphabeths;
public myClass() {
alphabeths = {"a", "b", "c"};
how can i write this right?
thx