if u add an import stmt to an application
u can do the same by adding reference to the apllication
then what is the diff bet these two ?
Answer Posted / praveen n h
when you add the dll reference to an application. It means
that you can use the classes in that namespace.
But if you don't mention the imports(vb)/using(c#) statement
wherever in your application you are referring to that class
you will have to mention the complete class name.
If you use the imports(vb)/using(c#) statement you can
directly mention the class name to use it.
for example
'with imports
imports test 'test is the DLL and it has addtion class in it
.....
class myclass
{
'to create an object of the addition class here is the stmt.
......
addition a = new addition()
.......
}
Without imports
class myclass
{
test.addition a = new test.addition()
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is entity framework used for?
what is deferred loading(lazy loading)?
What are the components of the .net framework.
Explain what platforms does the .net framework run on?
What “beforFilter()”,“beforeRender” and “afterFilter” functions do in Controller?
i want to take the fast track training on >net Frame work and work flows and share point could you tellme the good institutes for that cources
What is page life cycle?
What filters are executed in the end?
What is tempdata?
Do I need microsoft .net framework?
Explain linq to entities? : Entity framework
what is csdl?
What are the 2 popular asp.net mvc view engines?
How to use multiple submit buttons in asp.net mvc?
What are the two ways to add constraints to a route?