T
Terry Olsen
I have written a class library that I want to reference from a windows
app. The filename is UPSTrackTool.dll. The Class name is UPSTrackTool.
When I reference it from my windows app, I put the Imports UPSTrackTool
at the top. But when I call any methods I have to use:
UPSTrackTool.UPSTrackTool.MyMethod()
How do I name this thing so I only have to Imports UPSTrackTool and then
I can just call MyMethod()?
app. The filename is UPSTrackTool.dll. The Class name is UPSTrackTool.
When I reference it from my windows app, I put the Imports UPSTrackTool
at the top. But when I call any methods I have to use:
UPSTrackTool.UPSTrackTool.MyMethod()
How do I name this thing so I only have to Imports UPSTrackTool and then
I can just call MyMethod()?