Quantcast
Channel: Answers for "The "using" keyword, with the Split method C#"
Browsing all 6 articles
Browse latest View live

Answer by shaderop

You're almost there. `String.Split` takes an array of characters for the separators. Like so: string[] names = fullName.Split(new char[] {' '}); That should do it.

View Article


Answer by initTechsuport

i did have to use "using System;", i saw this in some example using the split somewhere. This is the code im using, to basically tag a level and have my persistent UI react to a level by name. What...

View Article


Answer by kamlakar4

ASP.Net C# Split string function provides the functionality to split the string into a string array by specifying its delimiters. C# split string function splits the string into array collection...

View Article

Answer by shaderop

You're almost there. `String.Split` takes an array of characters for the separators. Like so: string[] names = fullName.Split(new char[] {' '}); That should do it.

View Article

Answer by initTechsuport

i did have to use "using System;", i saw this in some example using the split somewhere. This is the code im using, to basically tag a level and have my persistent UI react to a level by name. What...

View Article


Answer by kamlakar4

ASP.Net C# Split string function provides the functionality to split the string into a string array by specifying its delimiters. C# split string function splits the string into array collection...

View Article
Browsing all 6 articles
Browse latest View live