⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stunerrorcode.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Imps.Client.Core.P2P.ICE.Message
{
    using System;

    public class StunErrorCode
    {
        private int m_Code;
        private string m_ReasonText = "";

        public StunErrorCode(int code, string reasonText)
        {
            this.m_Code = code;
            this.m_ReasonText = reasonText;
        }

        public int Code
        {
            get
            {
                return this.m_Code;
            }
            set
            {
                this.m_Code = value;
            }
        }

        public string ReasonText
        {
            get
            {
                return this.m_ReasonText;
            }
            set
            {
                this.m_ReasonText = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -