Why does the following code throw an exception?
Dim o1() As Object = New Object() {"Sankar", "Sankar2"}
s = DirectCast(o1, String())
Following is a snippet from VB.NET language specification on MSDN.
Dim o1() As Object = New Object() {"Sankar", "Sankar2"}
s = DirectCast(o1, String())
Following is a snippet from VB.NET language specification on MSDN.
Comment