Jan Wosnitza
Jan Wosnitza
At the current state e.g. the functions `H5F.create( .. )` and `H5F.get_filesize( .. )` both return `Int32` even though `create` returns an actual id and `get_filesize` only indicates if there...
See last paragraph of #112 for details.
See #112 for details. `ConfigurationManger.AppSettings[ ... ]`: * returns `null` when the key doesn't exist * the return type is `string`, so the `ToString()` doesn't do anything except throwing `NullReferenceException`
In `NativeDependencies.GetAssemblyName()` the binary search path based on this code: ```C# string myPath = new Uri(System.Reflection.Assembly .GetExecutingAssembly().CodeBase).AbsolutePath; myPath = Uri.UnescapeDataString(myPath); return myPath; ``` which transforms a path `c:\Dir\Sub#Dir\HDF.PInvoke.dll` into `c:\Dir\Sub`....
In `NativeDependencies.GetAssemblyName()` the path is selected relative to the executed assembly (the program using the DLL) and not (what I expected) relative to the DLL. This could be fixed by...
According to this [build log](https://ci.appveyor.com/project/gheber/hdf-pinvoke/build/1.0.16/job/6d6dgelra6kj7sg3#L26) the errors appeared first in 2f550a659707f14c13642ae3691ff24f0ad12170. (there are also some [at the end](https://ci.appveyor.com/project/gheber/hdf-pinvoke/build/1.0.16/job/6d6dgelra6kj7sg3#L759))
[`Operators.( .. .. )`](https://msdn.microsoft.com/visualfsharpdocs/conceptual/operators.%5B-..-..-%5D%5B%5Et,%5Estep%5D-function-%5Bfsharp%5D?f=255&MSPPError=-2147217396) throws an `ArgumentException` when `^Step` does not implement non-generic `System.IComparable`. #### Repro steps Run the following code: ```fsharp type Step(value:int) = member __.Value = value static...