Both the questions are from "VB.NET"
Q1:
im a bit of a confusion with the "System.dll" and
"mscorlib.dll" files because of the folowing
reason.
Math class is in the "System" namespace and when you
click on the "System" namespace from the solution explorer
it display the assembly of the "System" namespace as System.dll
in the property box.
But according to the MSDN the assembly for "System" namespace
is "mscorlib.dll".
I know the above mention information is bit confusing However
my question is, are these two assemblies(System.dll and mscorlib.dll)
reffers to the mscorlib.dll assembly or they are two different kinds?
--------------------------------------------------------------
Q2:
Module mod1
Dim i As Interger = 7
Sub Main()
in the MessageBox.Show("message" & i, "title")
End Sub
End Module
Does the Show() casts the value of the i to a
string before concatenation?