代码拉取完成,页面将自动刷新
using System;
using System.Collections.Generic;
using System.Text;
namespace dpz2.Json {
/// <summary>
/// 布尔单元类型
/// </summary>
public class JsonBoolean : JsonUnit {
/// <summary>
/// 获取或设置值
/// </summary>
public bool Value { get; set; }
/// <summary>
/// 对象实例化
/// </summary>
public JsonBoolean(JsonUnit parent) : base(UnitType.Number, parent) {
this.Value = false;
}
/// <summary>
/// 获取数值
/// </summary>
/// <returns></returns>
protected override bool OnGetBoolean() {
return this.Value;
}
/// <summary>
/// 获取字符串
/// </summary>
/// <returns></returns>
protected override string OnGetString() {
return "" + this.Value;
}
/// <summary>
/// 设置数值
/// </summary>
/// <param name="value"></param>
protected override void OnSetBoolean(bool value) {
this.Value = value;
}
/// <summary>
/// 获取Json字符串
/// </summary>
/// <returns></returns>
protected override string OnGetJsonString() {
return this.Value ? "true" : "false";
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。