How to use messagebox in C#? What is the process for creating message box?
Latest Answer: you could do that byMessageBox.Show("hai");or if u want the symbols then u could go forMessageBox.Show(string mesasage,string caption,messageboxbuttons buttons) ...
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 ...
How to format screen in a console application like C/C++. How can we clear the screen, change color or fonts and set cursor position.
View page << Previous 1 [2] 3 4 5 Next >>

Go Top