c# 泛型demo
Posted jasonlai2016
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 泛型demo相关的知识,希望对你有一定的参考价值。
private void Fn_Post<T>(T dto, string api) HttpClient client = new HttpClient(); client.BaseAddress = new Uri("http://localhost:51529/"); string json = DefaultJsonSerializer.Serialize(dto); HttpContent httpcontent = new StringContent(json); httpcontent.Headers.ContentType = new MediaTypeHeaderValue("application/json"); var result = client.PostAsync(api, httpcontent).Result; client.Dispose();
以上是关于c# 泛型demo的主要内容,如果未能解决你的问题,请参考以下文章