Hi i am creating a .dll file in vb.net like this
Namespace class1
Public Class Class1
Public eno As Integer
Public Sub details()
System.Diagnostics.Debug.WriteLine("This is sub1")
End Sub
End Class
End Namespace
c:\>vbc /t:library class1.vb
while creating the .dll using commadprompt its giving an error
pls give me a idea whats my mistake and how to create a .dll in vb.net
error:the file class.vb not found
Thanks
Satya
Namespace class1
Public Class Class1
Public eno As Integer
Public Sub details()
System.Diagnostics.Debug.WriteLine("This is sub1")
End Sub
End Class
End Namespace
c:\>vbc /t:library class1.vb
while creating the .dll using commadprompt its giving an error
pls give me a idea whats my mistake and how to create a .dll in vb.net
error:the file class.vb not found
Thanks
Satya