diff --git a/Apewer/Class.cs b/Apewer/Class.cs
index 44fd601..545a004 100644
--- a/Apewer/Class.cs
+++ b/Apewer/Class.cs
@@ -125,17 +125,9 @@ namespace Apewer
#region 运算符。
/// 从 到 Boolean 的隐式转换,判断 包含值。
- /// 当 T 是 Boolean 时,获取 Value。
当 T 是 String 时,判断 Value 不为 NULL 且不为空。
public static implicit operator bool(Class instance)
{
if (instance == null) return false;
-
- // var boolean = instance as Class;
- // if (boolean != null) return boolean.Value;
-
- // var text = instance as Class;
- // if (text != null) return !string.IsNullOrEmpty(text.Value);
-
return true;
}