public static string GetName([NotNull] this IniEntry entry) { return(entry.Entry.Substring(entry.Start, entry.Separator - entry.Start)); }
public static string GetValue([NotNull] this IniEntry entry) { // todo clean up value return(entry.Entry.Substring(entry.Separator + 1)); }