String.Split(char[], int) overload missing / MSDN docs wrong

A

AP

According to MSDN:

"String.Split (Char[], Int32) Returns a String array containing the
substrings in this instance that are delimited by elements of a
specified Char array. A parameter specifies the maximum number of
substrings to return.

Supported by the .NET Compact Framework."

According to ildasm:

..method public hidebysig instance string[]
Split(char[] separator) cil managed

The above is the only System.String.Split() function available.

Can someone from Microsoft take care of fixing the bug in the MSDN
documentation?

-Andrew
 
D

Daniel Moth

I believe all msdn pages have a feedback area at the bottom... You could use
that or the product feedback site (ladybug) if you prefer...

Cheers
Daniel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top