using System; using System.Collections.Generic; using System.Text; namespace Biff8Excel.Interfaces { public interface ICell { //string CellName //{ // set; // get; //} object ResolvedValue { get; } } }