#using <mscorlib.dll> used why?</mscorlib.dll>
-
Hi In Visual Studio .Net ,Why we r using #using this dll ?Is there any advantages for using that DLL? Thanks & Regards :rose:Nisha.S
-
Hi In Visual Studio .Net ,Why we r using #using this dll ?Is there any advantages for using that DLL? Thanks & Regards :rose:Nisha.S
nisha00000 wrote:
In Visual Studio .Net ,Why we r using #using this dll ?Is there any advantages for using that DLL?
What are you talking about?
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
nisha00000 wrote:
In Visual Studio .Net ,Why we r using #using this dll ?Is there any advantages for using that DLL?
What are you talking about?
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
Answering on National Day: you're addict (or possibly you're not Italian ;P )! More drugz plz plz! :-D
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke -
Answering on National Day: you're addict (or possibly you're not Italian ;P )! More drugz plz plz! :-D
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain ClarkeSay what? There are actually Italians that are making posts too, on this National day! Talk about the C++ MFC addicted polyglot. :-D
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
Answering on National Day: you're addict (or possibly you're not Italian ;P )! More drugz plz plz! :-D
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain ClarkeHey man, Wish you a very very Happy National Day. :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
Hey man, Wish you a very very Happy National Day. :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
Thank you very much. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke -
Thank you very much. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain ClarkeMy Wishes too. :)
-
My Wishes too. :)
Thanks Rajkumar :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke -
Hi In Visual Studio .Net ,Why we r using #using this dll ?Is there any advantages for using that DLL? Thanks & Regards :rose:Nisha.S
Well see this code
Mynamespace.Myclass.MyMythod a=new Mynamespace.Myclass.MyMythod();
but if you use of #using you will have this code:
#using Mynamespace
Myclass.MyMythod a=new Myclass.MyMythod();