-
-
How do I get deterministic finalization in C#?
In a garbage collected environment, it's impossible to get true determinism. However, a design pattern that we recommend is implementing IDisposable on any class that contains a critical resource. Whenever this class is consumed, it may be placed in a using statement, as shown in the following example: using(FileStream myFile = File.Open(@"c:temptest.txt", FileMode.Open)){int fileOffset = 0;while(fileOffset...
-
-
Any process can be divided into multiple
Skill/Topic: AdvancedA) ProgramsB) ThreadsC) Application domains
-
Will finally block get executed if the exception had not occurred?
Yes. What is the C# equivalent of C++ catch (…), which was a catch-all statement for any possible exception?
-
Late and early binding
which one best in late binding and early binding? What is the difference between them ?
-
Operator Overloading
Why should we have to overload ==(equals) and !=(not equals) operators in same program? If any one is not overloaded it gives error. Same with =?
-
All .NET code have to be CLS compliant
Skill/Topic: IntermediateA) TrueB) False
-
When do you absolutely have to declare a class as abstract ?
(as opposed to free-willed educated choice or decision based on UML diagram)? When at least one of the methods in the class is abstract. When the class itself is inherited from an abstract class, but not all base abstract methods have been over-ridden.
-
Following are the collections in C#:
Skill/Topic: AdvancedA) structsB) enumC) dictionariesExplanation: Ans. b & c. a isn’t a collection .
-
Exception Handling
what is the necessary for "throws" and "throw" in exception handling??
Even Though the exception has been thrown automatically and being handled by try and catch block..
-
C# sealed variables
I have taken a windows application and a button control in it.I want to declare a variable as a sealed and use that variable with in same class as we cannot use in other class. class test { public sealed int x = 5; public void abc() { MessageBox.Show(x.ToString()); } } class best :test { ...
-
By declaring a base class function as virtual we allow the function to be overridden in subclasses
A) TrueB) FalseExplanation: If a function is declared virtual it needs to be overridden in subclass
-
My switch statement works differently! Why?
C# does not support an explicit fall through for case blocks. The following code is not legal and will not compile in C#: switch(x){case 0:// do somethingcase 1:// do something in common with 0default:// do something in common with//0, 1 and everything elsebreak;}To achieve the same effect in C#, the code must be modified as shown below (notice how the control flows are explicit): class Test{public...
-
-
Can we write Dotnet Console program in Unix
Can we write Dotnet Console program in Unix ? If yes Give one example.
-
When to use string classes
when we have string builder which are mutable why we need immutable string classes in C#.
-
The following code fails. Why?
int a = 5; int b = 5; object oa = a; object ob = b; Debug.Assert(oa == ob, "oa is not equal ob");
-
-
Advantages of static class over class ?
When to use static class and when to use normal class ?
C# Interview Questions
Ans