How to create, activate, work and stop a Multi Thread?
How to define a random number without making an object?
How to use messagebox in C#? What is the process for creating message box?
How to acheive UNDO and REDO functions using C#
How does a CLR work?
What is shallow and deep copy in C#? How to perform the same in C#?
Latest Answer: shallow copy copies the structure of the object, deep copy copies structure as well as data.For example, consider an object called X that references objects A and B. Object B, in turn, references object C. A shallow copy of X creates new object X2 that ...
1. What is an indexer?2. Why we are using indexer?
I took a button in form.I have two classes emp and bonus.bonus class is inherited from emp class.If bonus is giving ie in dialog box if we select ‘Yes’ b ie bonus
Latest Answer: Hi aarruunnaa,You try this code, if it is useful for you send me reply otherwise ask me again dont hesitate class emp {public int eno,sal; public emp(){}public emp(int eno,int sal) {this.eno=eno;this.sal=sal; }public virtual void print() {MessageBox.Show("eno ...
Latest Answer: yes, the abstract classes can have constructors.But they can be run only by the subclasses of the abstract class ...
View page [1] 2 3 4 Next >>

Go Top