What is raise event and what is its use?



What is raise event and what is its use?..

Answer / vishwa

Raise event is used to called the user defined event.
Its uses are we can defined user defined events.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is a decimal c#?

0 Answers  


if we are updating a database using thread, and mean while application crashes or thread being aborted then what will happen in Database? Rollback or Database will be updated? Please explain with different scenario.

0 Answers  


What does string format do?

0 Answers  


What is serialization in c#?

0 Answers  


How you will create satellite assemblies?

0 Answers  






What are the steps to create an assembly and add it to the gac?

0 Answers  


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

1 Answers   iGate,


Does c# support const methods, properties, or events?

0 Answers  


What are the 3 different types of arrays?

0 Answers  


What are the differences between system.string and system.text.stringbuilder classes?

0 Answers  


What is difference between the "throw" and "throw ex" in .net?

0 Answers  


What is the difference between ienumerable and iqueryable?

0 Answers  


Categories