porting c code and crc32
-
Hi. A few quick questions: Does C# have any function that will compute crc32? How can I port C code into C#? Do I have to rewrite it, or is there a quicker way?
dfn wrote:
Does C# have any function that will compute crc32?
No
dfn wrote:
Do I have to rewrite it
Yes, that is the easiest way. There are conversion tools that probably need some postprocessing, for a simple code snippet it is not worth the trouble. BTW there are some CRC articles on the CodeProject site... :)
Luc Pattyn [Forum Guidelines] [My Articles]
this weeks tips: - make Visual display line numbers: Tools/Options/TextEditor/... - show exceptions with ToString() to see all information - before you ask a question here, search CodeProject, then Google
-
Hi. A few quick questions: Does C# have any function that will compute crc32? How can I port C code into C#? Do I have to rewrite it, or is there a quicker way?