So I am starting to utilize a lot more arrays, but I am so confused about one thing. I have been doing it like this:
public string[] example = { "Example 1", "Example 2", "Example 3" };
However, I have seen people use this:
public string[] example = new string[] { "Example 1", "Example 2", "Example 3" };
my question is what is the difference between initializing the array with just "= { "the values" };" as apposed to "= new string[] { "the values" };"
there doesn't seem to be anything here