I have a string like "Akzo_Nobel_N@46@V@46@"
.
The original string is "Akzo Nobel N.V."
I need to decode it. I have tried like this
public static string Decode(string query)
{
string dSData = HttpUtility.UrlDecode(query.ToString());
return dSData;
}
I am not able to decode this into the original string. Please help me decode it.