Define Diffgram?

Started by VelMurugan, Feb 07, 2009, 04:38 PM

Previous topic - Next topic

VelMurugan

Define Diffgram?

1. Explain what a diffgram is, and a good use for one?
The DiffGram is one of the two XML formats that you can use to render DataSet object contents to XML. A good use is reading database data to an XML file to be sent to a Web Service.

2. Whats MSIL, and why should my developers need an appreciation of it if at all?
MSIL is the Microsoft Intermediate Language. All .NET compatible languages will get converted to MSIL. MSIL also allows the .NET Framework to JIT compile the assembly on the installed computer.

3. Which method do you invoke on the DataAdapter control to load your generated dataset with data?
The Fill() method.

Source : csharpthegreat