Read ODS (Open Office Calc) Files - C#
Spreadsheet SDK sample in C# demonstrating ‘Read ODS (Open Office Calc) Files’
Program.cs
using System;
using System.Collections.Generic;
using System.Text;
using Bytescout.Spreadsheet;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
// Create new Spreadsheet
Spreadsheet document = new Spreadsheet();
document.LoadFromFile("Hello_world.ods");
// Get worksheet
Worksheet worksheet = document.Workbook.Worksheets.ByName("Sheet1");
// Read cell value
Console.WriteLine("Cell (0,0) value: {0}", worksheet.Cell(0, 0).ValueAsString);
// Write message
Console.Write("Press any key to continue...");
// Wait user input
Console.ReadKey();
}
}
}