What is an implicit object?
What is native keyword in c#?
For native Java equlivalent keyword is extern in c#.
native keyword is used Java and where as in c# extern keyword is used.
Sample usage is below.[DllImport("User32.dll")]
public static extern int MessageBox(int h, string m, string c, int type);
How to display and create message box in ASP.Net using c# code?
There are 2 ways we can achive message box functionality in ASP.Net and both are asynchronus.
1. Using Ajaxpro update panel we can create message box
2. Through JavaScript confrim function we can display message box.
What is shallow and deep copy in c#? How to perform the same in c#?
Shallow copy make a copy of data along with it's reference, for example object A has property name, by making a shallow copy to object B, and changes the name property value that will reflect in o...
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 obje...
How does the main thread know of errors in child thread?
Dynamic interface implementation
How to implement an interface to a existing class at runtime?
How to create our application's icon in taskbar?
What is data relation? What are data relation objects in c#?
What are func key in c# 3.0?
Transfer data in windows forms
How to transfer the data from one form to another form?
How to retrive data in tree view from database with child node?
How to retrive an image from database and display it in grideview control?
How to use messagebox in c#? What is the process for creating message box?
you could do that by
MessageBox.Show("hai");
or if u want the symbols then u could go for
MessageBox.Show(string mesasage,string caption,messageboxbuttons buttons)
How to create, actiVATe, work and stop a multi thread?
How to define a random number without making an object?
How to acheive undo and redo functions using c#
The Syntax of the question has gone wrong.
It should be A=(5>6)?8:10
Then the answer would be 10.
This Answer is 10;
Correct Syntax is: A=(5>6)?8:10.
Remoting is basically means, running the a function or a part of code in a remote computer for processing power or/and security reasons.For example a fight game client want to run pickGoldFromGround()...