Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. string testing[] = { "Test", "One", "Two", "Three"};
  2. string * stringArray;
  3. stringArray = new string[5];
  4. stringArray[0] = "Test";
  5. stringArray[1] = testing[1];
  6. stringArray[2] = testing[2];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement