c# - Error when splitting string with string -



c# - Error when splitting string with string -

how can split string string?

string postbuffer = "this first----webkitformboundarybbzbllwzo0cicua6this last" string[] bufferarray = postbuffer.split("----webkitformboundarybbzbllwzo0cicua6", stringsplitoptions.none);

i , error cannot convert argument '1' string char , argument '2' cannot convert system.stringsplitoptions char.

what doing wrong?

postbuffer.split(new string[] { "----webkitformboundarybbzbllwzo0cicua6"}, stringsplitoptions.none);

c# asp.net visual-studio split string-split

Comments

Popular posts from this blog

c# - Move local mssql database to webhosted MYSQL -

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -