예제 #1
0
 public static int ReadInt(this TextFileManager tfm, int line, int position, char[] separators) => Convert.ToInt32(tfm.ReadWord(line, position, separators));
예제 #2
0
 public static bool ReadBool(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int startColumn, int endColumn) => Convert.ToBoolean(tfm.ReadWord(anchorTexts, skipLines, startColumn, endColumn));
예제 #3
0
 public static double ReadDouble(this TextFileManager tfm, int line, int position, char[] separators) => Convert.ToDouble(tfm.ReadWord(line, position, separators));
예제 #4
0
 public static double ReadDouble(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int startColumn, int endColumn) => Convert.ToDouble(tfm.ReadWord(anchorTexts, skipLines, startColumn, endColumn));
예제 #5
0
 public static int ReadInt(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int startColumn, int endColumn) => Convert.ToInt32(tfm.ReadWord(anchorTexts, skipLines, startColumn, endColumn));
예제 #6
0
 public static int ReadInt(this TextFileManager tfm, int line, int startColumn, int endColumn) => Convert.ToInt32(tfm.ReadWord(line, startColumn, endColumn));
예제 #7
0
 public static bool ReadBool(this TextFileManager tfm, int line, int startColumn, int endColumn) => Convert.ToBoolean(tfm.ReadWord(line, startColumn, endColumn));
예제 #8
0
 // fix - fix
 public static T ReadWord <T>(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int position, char[] separators) => (T)Convert.ChangeType(tfm.ReadWord(anchorTexts, skipLines, position, separators), typeof(T));
예제 #9
0
 public static double ReadDouble(this TextFileManager tfm, int line, int startColumn, int endColumn) => Convert.ToDouble(tfm.ReadWord(line, startColumn, endColumn));
예제 #10
0
 // fix - rel
 public static T ReadWord <T>(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int startColumn, int endColumn) => (T)Convert.ChangeType(tfm.ReadWord(anchorTexts, skipLines, startColumn, endColumn), typeof(T));
예제 #11
0
 // rel - fix
 public static T ReadWord <T>(this TextFileManager tfm, int line, int position, char[] separators) => (T)Convert.ChangeType(tfm.ReadWord(line, position, separators), typeof(T));
예제 #12
0
 // Read single item
 // rel - rel
 public static T ReadWord <T>(this TextFileManager tfm, int line, int startColumn, int endColumn) => (T)Convert.ChangeType(tfm.ReadWord(line, startColumn, endColumn), typeof(T));
예제 #13
0
 public static bool ReadBool(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int position, char[] separators) => Convert.ToBoolean(tfm.ReadWord(anchorTexts, skipLines, position, separators));
예제 #14
0
 public static int ReadInt(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int position, char[] separators) => Convert.ToInt32(tfm.ReadWord(anchorTexts, skipLines, position, separators));
예제 #15
0
 public static bool ReadBool(this TextFileManager tfm, int line, int position, char[] separators) => Convert.ToBoolean(tfm.ReadWord(line, position, separators));
예제 #16
0
 public static double ReadDouble(this TextFileManager tfm, string anchorText, int skipLines, int position, char[] separators) => Convert.ToDouble(tfm.ReadWord(anchorText, skipLines, position, separators));