How Handle error if interface A,B are extended in class C. If class C using one function that is in A Interface if any error occurs in function how do you handle it?
Latest Answer: Question is not correct, Interfaces doesnot have method body, so there is nothing to handle. ...
If there are 5 different .net applications running on a single machine,When the Garbage Collector wakes up how does it release the unused resources1)Will there be 5 threads of GC running(1 for each application)?2)Will
Latest Answer: GC is a thread running in the .net CLR. There is only one thread for the entire runtime which manages any number of applications running....GC.Collect() is just a request to the runtime to initiate a collection.... ...
Latest Answer: There is an extention for 1) ASP.NET as .aspx2) VB.NET as .vb3) C#.net as .cs ...
Latest Answer: Abstraction is the process of identifying common patterns that have systematic variations ...
Latest Answer: Partial class allows developers to split a class into multiple files.ex:public partial class A{ A() { //constructor here }}Suppose another ...
Latest Answer: Best Example to understand Mutable and Immutable is string.string class is immutable.so if string x = "123";if you do x = x + "abc" what it does is it assigns new memory location for 123 and abc.Then adds the two strings and places the computed results ...
Does Garbage Collection disposes a object even if you abort the application in the middle? How to check this?
Latest Answer: First of all C# does not support multiple Inheritance. So to achieve Multiple Inheritance can be done using Interface. ...
Latest Answer: Deployment is a process of installing required assemblies and needed dependencies for the product to work on the production setup. Whether it referes to ASP.NET application or Windows, but usually it is more pronounced for ASP.NET web application. ...
View page [1] 2 3 4 Next >>

Go Top