This question is locked. New answers and comments are not allowed.
I just noticed that some VB.NET code was translated a little incorrectly into C#.
became
where it should probably be
since the CType function accepts strings. I don't think it's exactly the same semantics, but it's a lot closer.
| CType("true", Boolean) |
became
| (bool)"true" |
where it should probably be
| Convert.ToBoolean("true") |
since the CType function accepts strings. I don't think it's exactly the same semantics, but it's a lot closer.