What does CLR do after the IL is generated and machinelanguage is generated .Will it look for main method ?
Latest Answer: CLR won't look for main. the code developed using c# or vb.net or etc is not understood by clr .it knows only IL code. The language types and code is not understood by clr.so, after converting into IL only clr understands. ...
Which is better one to follow1.Creating object every time passing values as a parameters to constructor and add to the listor2.Create it once i.e, default constructorand assign values to properties and
Latest Answer: Supplying parameters to the constructor at the time of object creation to initialize the object fields wil incur lesser cost compared to initialising fields through properties.Reason: Properties are nothing but 'get_' and 'set_'Â METHODS and therefore ...
Latest Answer: An application directory partition is a directory partition that is replicated only to specific domain controllers.+RK ...
Recently I had to search and replace carriage return with space in word, I search the net and found ^p could be used as Carriage return Search and Replace input box.so just wanted to share it with you
Latest Answer: Hi,1. IDispatch exposes Properties, Methods & Events to other applications that are support the automations client applications.2. ActiveX and OLE components uses the IDispose Interface to expose the ActiveX and OLE components' members(Property, ...
If you want to execute a SQL Script while deploying your application where will you do that in deployment project
Latest Answer: Class is a type where you can create your own type. Just as int data type in .Net which takes only integer values and having default API's such as toString(). Similarly, you can create your own type having API's which do some operation ...
Latest Answer: A private assembly is normally used by a single application, and is stored in the application's directory, or a sub-directory beneath. A shared assembly is intended to be used by multiple applications, and is normally stored in the global assembly ...
Latest Answer: The default size of cache is doubles of your system RAM size.i.e.if ur ram is of 128mb then the default cache size is 256mb. ...
What are the differences between C# and VB.NET apart from syntax?which is more powerful,how do we determine which language to be used when designing a .NET app?
View page [1] 2 3 4 5 Next >>

Go Top