I have this piece of code:
description="EUR CMS Swap";
description_token=description.Split(" ".ToCharArray());
bool check;
if(description_token.Contains("EUR CMS"))
check=true;
But check is always false, even though
description_token[0]="EUR"
description_token[1]="CMS"
What am I doing wrong? Is there an alternative method?