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