Click here to Skip to main content
15,893,508 members
Articles / Programming Languages / C#

Component for Fast Pass/Retrieve Data from Excel

Rate me:
Please Sign up or sign in to vote.
5.00/5 (10 votes)
13 Mar 2009CPOL3 min read 52.6K   2.2K   77  
ExcelCommunicator allows to pass and retrieve data to/from Excel as datasource/calculation-engine
using System;

namespace ExcelCommunicator
{
	/// <summary>
	/// Summary description for ConfigurationOutputException.
	/// </summary>
	public class ConfigurationOutputException:System.Exception
	{
		public ConfigurationOutputException(string message):base(message)
		{
			//
			// TODO: Add constructor logic here
			//
		}
	}
}

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)



Comments and Discussions