예제 #1
0
파일: IniFile.cs 프로젝트: RedworkDE/dv-mod
 public static string GetName([NotNull] this IniEntry entry)
 {
     return(entry.Entry.Substring(entry.Start, entry.Separator - entry.Start));
 }
예제 #2
0
파일: IniFile.cs 프로젝트: RedworkDE/dv-mod
        public static string GetValue([NotNull] this IniEntry entry)
        {
            // todo clean up value

            return(entry.Entry.Substring(entry.Separator + 1));
        }