少年修仙传客户端代码仓库
client_Wu Xijin
2018-10-27 45c82c513c67130bb52cb5e7f2f10c957e463cf1
Core/GameEngine/Model/Config/WindowSearchConfig.cs
@@ -9,35 +9,35 @@
namespace TableConfig {
    
   public partial class WindowSearchConfig : ConfigBase {
   public partial class WindowSearchConfig : ConfigBase {
      public int ID { get ; private set ; }
      public int Type { get ; private set ; }
      public int Lv { get ; private set ; }
      public int TABID { get ; private set ; }
      public string SelectActive { get ; private set; }
      public int ID { get ; private set ; }
      public int Type { get ; private set ; }
      public int Lv { get ; private set ; }
      public int TABID { get ; private set ; }
      public string SelectActive { get ; private set; }
      public override string getKey()
        {
            return ID.ToString();
      public override string getKey()
        {
            return ID.ToString();
        }
      public override void Parse() {
         try
            {
                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
            Type=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
            Lv=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
            TABID=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
            SelectActive = rawContents[4].Trim();
            }
            catch (Exception ex)
            {
                DesignDebug.Log(ex);
         try
            {
                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
            Type=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
            Lv=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
            TABID=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
            SelectActive = rawContents[4].Trim();
            }
            catch (Exception ex)
            {
                DebugEx.Log(ex);
            }
      }