add the following reference to your project:
Microsoft.VisualBasic
add the following import to the top of your code behind page:
using vb=Microsoft.VisualBasic;
Then you can go ahead and make use of all those VB String Functions:
C2E = vb.Strings.Mid(Str2Encrypt, X, 1);
MP = vb.Strings.InStr(1, Matrix, C2E, 0);
CWL = vb.Strings.Mid(CodeWord, Y, 1);
|