1. I have Windows 7 64Bit
2. I changed libeay32.dll file
Source is in C:\
And when i debug in Microsoft Visual Studio, it says:
------------------------------------------
return double.Parse(IVS.Value);
Input string was not in a correct format.
------------------------------------------
Here is the whole code:
Code:
public double ReadDouble(string Section, string Key)
{
string section = "[" + Section + "]";
IniSectionStructure ISS = null;
Sections.TryGetValue(section, out ISS);
if (ISS != null)
{
IniValueStructure IVS = null;
ISS.Variables.TryGetValue(Key, out IVS);
if (IVS != null)
return double.Parse(IVS.Value);
}
return 0;
}
Picture Link:







