What?s the difference between <c> and <code> XML
documentation tag?



What?s the difference between <c> and <code> XML documentation tag?..

Answer / surojit

What’s the difference between <c> and <code> XML
documentation tag?
Single line code example and multiple-line code example.

Is This Answer Correct ?    7 Yes 1 No

Post New Answer

More C Sharp Interview Questions

Explain the difference between a sub and a function in c#.

0 Answers  


What is array and arraylist?

0 Answers  


What is the base class for array types?

0 Answers  


Explain the difference between const and static read-only?

0 Answers  


What is a shared assembly?

0 Answers   Wipro,






What is xml comments in c#?

0 Answers  


In a stored procedure 4 select stmts there.If error comes in one select stmt will remaining normally executes?

7 Answers   Microsoft,


What is the components of window?

0 Answers  


What is an assembly qualified name

0 Answers  


What is deferred execution?

0 Answers  


What is namespace in oop?

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,


Categories