I dont know PHP and I am stucking at one Position can anybody help me.
I have a code in PHP.
$binarySignature = hash_hmac('sha1', $stringToSign, $secretKey, true);
// We need to base64-encode it and then url-encode that.
$urlSafeSignature = urlencode(base64_encode($binarySignature));
Can anybody tell me what is the code in C# for above code.