What does CLR do after the IL is generated and machinelanguage is generated .Will it look for main method ?
Latest Answer: Once IL and Machine Language is generated, by using CLR, JIT(just in time) compiles the IL files, where it converts the code to Operating System understandable.CLR translates this MSIL code into an executable code when the program is executed ...
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: It is a scenario based decision the architecture of the application should take. Any parameters which are required for that object to perform minimal Operations, can be added to the default constructor. e.g. UserName is mandatory for the user registration ...
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 reserved data type which is used to encasulate similar type of methods and objects. For eg Cars is a class which holds Maruti 800 as object in it and tyres, seats etc are its methods or functions. (Methods and Functions are one ...
Latest Answer: Satellite assemblies are used for the functioning of Globalization and Localization. Globalization involves providing code that is common to all languages and cultures for the application created. Localization involves converting the global ...
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