I am try to write this stuff in c# asp.net 4 framework. I have a String variable called u. it is base64 encode of another string. now I need to decode it and get the original string, the problem is that decoding convert it to byte array.how can I convert it to string?
I tried Convert.FromBase64String(u).toString() but it didn't help :(