当前位置 : 主页 > 网络编程 > PHP >

[原创]c#静态方法的泛型技巧

来源:互联网 收集:自由互联 发布时间:2023-09-06
万能设置值 public void setValuet(t value) where t : JToken { this.jObject[fieldName] = value; } 万能创建不同泛型的对象。 public static JObjectTargett createJObjectTargett(JObject jObject, string fieldName ) { JObjectTargett


万能设置值

public void setValue<t>(t value) where t : JToken
{
this.jObject[fieldName] = value;
}

万能创建不同泛型的对象。

public static JObjectTarget<t> createJObjectTarget<t>(JObject jObject, string fieldName  )
{
JObjectTarget<t> jObjectTarget = new JObjectTarget<t>(jObject, fieldName);
return jObjectTarget;
}
【本文由:高防cdn http://www.558idc.com/gfcdn.html 复制请保留原URL】
上一篇:.UnsatisfiedLinkError: unknown failure
下一篇:没有了
网友评论