Click here to Skip to main content
15,892,298 members
Articles / Programming Languages / C#

A Very Easy to Use Excel XML Import-Export Library

Rate me:
Please Sign up or sign in to vote.
4.18/5 (86 votes)
25 Nov 2008CPOL13 min read 648.4K   19.6K   356  
Import export library for the Excel XML format, which reduces a programmer's work to the bare minimum.
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Yogesh.Extensions")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Yogesh.Extensions")]
[assembly: AssemblyCopyright("Copyright ©  2008")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components.  If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("82f86772-cdaf-4806-a3c6-bc3ee17592ef")]

// Version History (Major only)
// [18/12/0007] Revision 1.00	
// [21/01/2008] Revision 1.11 : Added Settings class
//								Added DateDifference extension for dates.
// [06/02/2008] Revision 1.12 : Added IsFlagSet extension function for enums.
// [08/02/2008] Revision 1.16 : Folder structure and File name changes.
//								Added Parse<T> method for enum
//								Added GetAttributes extension function for XmlReader
//								Added GetSingleAttribute extension function for XmlReader
[assembly: AssemblyVersion("1.16.524.1306")]
[assembly: AssemblyFileVersion("1.16.0121.0")]

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India

Comments and Discussions