Use C# SqlFile to get the Energy Plus result
Using the following C# code, there is always a System.AccessViolationException
Path path = new Path("D:\\IdealAirSystem.sql");
SqlFile sqlFile = new SqlFile(path);
Is this the correct way to use SqlFile? (The sql file exists at that path)
Comments