What code in c# produces identical results to CHECKSUM() in TSQL?
I was able to port BINARY_CHECKSUM to c# using this link.
Is there similar way to port CHECKSUM() too?
For example, the TSQL
SELECT CHECKSUM('12')
outputs,
2262
What c# code would produce the same result, for this example and all other possible inputs?