blah blah blah is here! blah blah » Close

0
votes
0 answers

why and when to use sealed class in c#

Hi All, I want to know when to use sealed class. I am working in a project where database related classes are sealed. Now I know that since these classes are sealed we cannot inherit. But what is the benifit of making database related cl ...

0
votes
1 answers

what's the vb.Net counterpart of the following blocks in Csharp?

[code]public class NullableDateTimePicker : System.Windows.Forms.DateTimePicker { // Default Constructor public NullableDateTimePicker() : base() { base.Format = DateTimePickerFormat.Custom; NullValue = " ...

1
votes
1 answers

Abstraction and Encapsulation concept

Please tell me what are exactly abstraction and encapsulation in OOPs and differences between these. I have seen different opinions in different books/websites for abstarction & encapsulation. Thank you.

Feedback