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

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -