I\'m learning c# and there is something I do not understand that I\'ve been unable to find any help about online.
string[] = testarray = { \"test1\", \"test2
Join is a static method on the String class, whereas Split is an instance method. To find out which is which, right click on String and Go To Definintion. This will show you the definition of the class (with method declarations, etc.)