C# Implicit array declaration
Posted
by The.Anti.9
on Stack Overflow
See other posts from Stack Overflow
or by The.Anti.9
Published on 2010-05-09T05:05:25Z
Indexed on
2010/05/09
5:08 UTC
Read the original article
Hit count: 227
Basically, I want to be able to use string.Split(char[])
without actually defining a char array as a separate variable. I know in other languages you could do like string.split([' ', '\n']);
or something like that. How would I do this in C#?
© Stack Overflow or respective owner