C# Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 1896 Page Views: 

Which class can be used to perform data type conversion between .NET data types and XML types?



Posted By: Avi Date: 28 October 2009 04:56:17 AM
 Answer:

XmlConvert


Posted By: eTechPlanet


Date: 28 October 2009 04:56:17 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image H2tb4H
Related Questions
C# : Can you declare static variable in method scope?

Can you declare static variable in method scope?

No
Category: C# Date: 10/15/2010 12:22:46 AM
C# : What will be the result of code?
int x = 3;
switch(x % 3)
{
 case 0:
 case 1:
  Console.WriteLine(x*2); break;
 default:
  Console.WriteLine(x); break;
}
C# : Write a code to copy file from path1 to path2 using FileStreams and BinaryReader, BinaryWriter

Write a code to copy file from path1 to path2 using FileStreams and BinaryReader, BinaryWriter

s1 = new FileStream(path1, FileMode.Open, FileAccess.Read); s2 = new FileStream(path2, FileMode.Crea....
Category: C# Date: 10/14/2010 8:00:46 PM
C# : How do you sum all elements from a List<int> data

How do you sum all elements from a List data

int result = data.Sum();
Category: C# Date: 10/14/2010 7:08:47 PM
C# : What will be result of this code:
class C1 
{ protected int A = 0;
  public virtual void B() { console.writeLine(A); }}
class C2 : C1 {public override void B() { Console.WriteLine(A+10); }}
static void Main(string[] args)
{
C1 c = new C2();
c.B();
}