public double GetNumber(string key)
 {
     return(NtCore.GetEntryDouble(m_path + PathSeperatorChar + key));
 }
 ///<inheritdoc/>
 public double GetNumber(string key, double defaultValue)
 {
     return(NtCore.GetEntryDouble(m_path + PathSeperatorChar + key, defaultValue));
 }