Latest Answer: Indexers are one neat feature of C#. They allow us to access a particular class as it is an array. They are similar to the properties in means that they encapsulate method calls into more convenient representation of value access and value setting. Declaring ...
Latest Answer: The Main facts for Inheritence to any thing that is it should worked as Base. And Structure could not worked as Base due to it is Value type. So, Inheritence is not supported by Structure. ...
Latest Answer: A read only member is like a constant in that it represents an unchanging value. The difference is that a readonly member can be initialized at runtime, in a constructor as well being able to be initialized as they are declared. For examplepublic class ...
Latest Answer: There are two easy methods1) No programming: Load the EXE/DLL with ILDASM.exe if it is .Net programed than it will work otherwise it will throw error. 2) Programatically: Use reflection API to LoadAssembly. It it is not a .Net program it will throw exception. ...
Latest Answer: All dll's and exe's generated by .NET applciations are ASSEMBLIES. To test a .exe whether its a .NET assembly or not , you need to use following code.try{AssemblyName assemblyName = AssemblyName.GetAssemblyName(FullPATHofFile);Console.WriteLine("{0} - ...
Latest Answer: Dispose is called explicitly by the user whereas finalize is called by garbage collector when ever it assumes to be appropriate.usually we use dispose method to free resources of our custom classes. Dispose can be implemented by using IDISPOSABLE interface ...
In which scenerio we use interfaces,abstract and concrete class?Which one is better and appropriate?Differentiate these three terms in depth.
Latest Answer: Application blocks are re-usable source code components that are common development challenges.These components can be easily be integrated and customized to suite your requirements. ...
Latest Answer: CLR is the correct answer ...
We have a dataset with one thousand records. Now we bind it to a datagrid. Now the question is suppose we have modified only three records in datagrid then how to update these three records in dataset. We have a single button to update the records
View page << Previous 3 4 5 6 [7] 8 9 10 11 12 Next >>

Go Top