Tagged Questions

2
votes
1answer
355 views

Runtime InvalidCastException with implicit cast operator

I have a C# library that internal clients configure with VB.Net Their scripts are throwing an InvalidCastException where they really shouldn't. So the code is something like this (massively ...
1
vote
4answers
288 views

Implicit casting in VB.NET

The question is intended for lazy VB programmers. Please. In vb I can do and I won't get any errors. Example 1 Dim x As String = 5 Dim y As Integer = "5" Dim b As Boolean = "True" Example 2 Dim ...