少年修仙传客户端代码仓库
client_Wu Xijin
2018-08-13 eda22bcd9683f3a94e0744da60d23808272c627f
Core/GameEngine/Model/Config/PriorLanguageConfig.cs
@@ -9,26 +9,26 @@
namespace TableConfig {
    
   public partial class PriorLanguageConfig : ConfigBase {
   public partial class PriorLanguageConfig : ConfigBase {
      public int Key { get ; private set ; }
      public string Content { get ; private set; }
      public int Key { get ; private set ; }
      public string Content { get ; private set; }
      public override string getKey()
        {
            return Key.ToString();
      public override string getKey()
        {
            return Key.ToString();
        }
      public override void Parse() {
         try
            {
                Key=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
            Content = rawContents[1].Trim();
            }
            catch (Exception ex)
            {
                DesignDebug.Log(ex);
         try
            {
                Key=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
            Content = rawContents[1].Trim();
            }
            catch (Exception ex)
            {
                DesignDebug.Log(ex);
            }
      }