//This code create by CodeEngine ,don't modify using System; using System.Collections.Generic; using System.Collections; using Module.Log; namespace GCGame.Table { public class Tab_GemInlayLvlLimit{ public const string TAB_FILE_DATA = "GemInlayLvlLimit"; private const int _varCount = 2; public int GetId() { return Level; } public static bool Validate(string line) { var segments = 0; foreach (char c in line) if (c == '\t') segments++; // Note: skip the 2nd column as it's the description; var result = segments == _varCount; if (!result) LogModule.ErrorLog(string.Format("Load {0} error as CodeSize:{1} not Equal DataSize:{2}", TAB_FILE_DATA, _varCount, segments)); return result; } public Tab_GemInlayLvlLimit() { } public Tab_GemInlayLvlLimit(string line) { var segments = line.Split('\t'); Level = int.Parse(segments[0]); MinLvl = int.Parse(segments[2]); } public int Level { get; private set; } public int MinLvl { get; private set; } } }