[ad_1]
I think the function you are looking for is IndexOf(). This is the equivalent of your find call above:
foreach (var uniqueKey in message)
{
var num = CHARACTER.IndexOf(uniqueKey);
if (num >= 0)
{
...
}
}
4
[ad_2]
solved C# for loop and encryption [closed]