What is the C# .NET Silverlight equivalent of componentsSeparatedByString in Objective-C?
Here is how the method works in Objective-C:
NSString *namesStr = @"John;Michael;Jason";
NSArray *namesArray = [namesStr componentsSeparatedByString:@";"];
Is there anything like this with C# .NET for a List?
You can just use
string.Split: