Friday, 9 August 2013

Issue related to string.split function in C#

Issue related to string.split function in C#

I have following string value: AnnualFee[[ContactNeeYear
i just want to split above string value using separator : "[["
so i used following code :
oMatch.Groups[0].Value.Split('[[');
but it throws an error saying:
Can not implicitly convert string[] to string
so how to split string value with separator : "[["

No comments:

Post a Comment