You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 6, 2024. It is now read-only.
If I try to read Sample.tdms which was unit test file of TDMSReader package, following exception is occurred.
System.NotImplementedException: 'The method or operation is not implemented.'
The code is,
using System;
using FSharp.Data.Tdms;
namespace FsharpTdmsTest
{
class Program
{
static void Main(string[] args)
{
bool ret = File.Read("Sample.tdms", true)
.TryGetRawData("EXAMPLE", "Time",
out double[] data);
Console.WriteLine("Start!");
foreach (var d in data)
{
Console.WriteLine("{0}", d);
}
Console.WriteLine("End!");
}
}
}
Do you have any idea why exception is thrown for TDMS 1.0 file?