Newer
Older
ClosedXML / ClosedXML / Excel / XLAddressLight.cs
@Francois Botha Francois Botha on 30 May 2017 394 bytes Unknown changes - something to do with line endings?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClosedXML.Excel
{
    internal struct XLAddressLight
    {
        public XLAddressLight(Int32 rowNumber, Int32 columnNumber)
        {
            RowNumber = rowNumber;
            ColumnNumber = columnNumber;
        }
        public Int32 RowNumber;
        public Int32 ColumnNumber;
    }
}