When developing in multiple languages, it sometimes is funny to see how they differ in compiler oddities. Below are a few on const examples. Basically, in C# you cannot go from a char const to a string const, and chars are a special kind of int. In Delphi you cannot go from a string to a char. ...
More...