如何将类对象转换为字符串

本文关键字:转换 字符串 对象 | 更新日期: 2023-09-27 18:09:44

我有一个通过web服务(WCF(提供的类对象。该类具有String类型的属性和一些自定义类类型。

如何获取自定义类类型的属性的属性名称和属性名称。

我尝试使用GetProperties((进行反射,但失败了。GetFields((给了我一些成功。如果属性类型是字符串类型,我还想获得自定义类型属性的属性。

这是我的密码。

public static string ToClassString(this object value)
{
    if (value == null)
        return null;
    var builder = new StringBuilder();
    builder.Append(value.GetType().Name + "{ ");
    foreach (var prop in value.GetType().GetFields(
BindingFlags.Public
| BindingFlags.Static | BindingFlags.Instance | BindingFlags.FlattenHierarchy | BindingFlags.GetProperty))
    {
        builder.Append("{ ");
        builder.Append(prop.Name + " , ");
        switch (prop.FieldType.Namespace)
        {
            case "System":
                builder.Append(prop.GetValue(value) + " }");
                break;
            default:
                builder.Append(prop.GetValue(value).ToClassString() + " }");
                break;
        }
    }
    builder.Append("}");
    return builder.ToString();
}

我得到了的输出

NotifyClass{UniqueId,16175}{NodeInfo,NodeInfo{}}{EventType,SAPDELETE}}

这是我想将其实例转换为字符串的类

[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.MessageContractAttribute(WrapperName="NotifyReq", WrapperNamespace="wrapper:namespace", IsWrapped=true)]
public partial class Notify
{
    [System.ServiceModel.MessageBodyMemberAttribute(Namespace="custom:namespace", Order=0)]
    public int UniqueId;
    [System.ServiceModel.MessageBodyMemberAttribute(Namespace="custom:namespace", Order=1)]
    public eDMRMService.NodeInfo NodeInfo;
    [System.ServiceModel.MessageBodyMemberAttribute(Namespace="custom:namespace", Order=2)]
    public string EventType;
    public Notify()
    {
    }
    public Notify(int UniqueId, eDMRMService.NodeInfo NodeInfo, string EventType)
    {
        this.UniqueId = UniqueId;
        this.NodeInfo = NodeInfo;
        this.EventType = EventType;
    }
}        

如何将类对象转换为字符串

无需重新发明轮子。使用Json。净

string s = JsonConvert.SerializeObject(yourObject);

仅此而已。

您也可以使用JavaScriptSerializer

string s = new JavaScriptSerializer().Serialize(yourObject);
string jsonString = JsonSerializer.Serialize(yourObject);

这是目前推荐使用System.Text.Json;的方法。点击此处了解更多信息。