Inheritance: TargetMemberInfo
Example #1
0
        protected string FormatEnumMember(Thread target, string prefix,
						   TargetEnumInfo info, bool is_static,
						   Hashtable hash)
        {
            string value = "";
            if (info.HasConstValue)
                value = String.Format (" = {0}", info.ConstValue);
            return String.Format ("{0}   {1}{2}", prefix, info.Name, value);
        }