Random programming things I'd want to remember
This is how to declare an inline char array (C#) to split the string into multiple parts:
List result = inputLine.Split(new[] {'%'}, StringSplitOptions.RemoveEmptyEntries).ToList();
Post a Comment
No comments:
Post a Comment