I'm importing files in codepage 1252 encoding to a SQL Server 2008 database.
Some data contains a comma that isn't the traditional comma (keycode 44) but instead 8218.
The column that contains this value is encrypted via an algorithm in VB6. When I implement the same algorithm in C# I get value 130 which then will does not match 8218.
What am I missing?
EDIT Thought I would share the solution.... Thank god for Reflector. It was that simple...