I have a c++ application. In that application one of the function is returning unsigned char
value. I want to convert that function into C# code. But, I don't have enough knowledge about c++ programming. I want to know what datatype would be placed against c++ unsigned char in C#.
The c++ function is look like this
unsigned char getValue(string s)
{
//SOME CODE HERE
}