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的主要内容,如果未能解决你的问题,请参考以下文章

C#进阶C# 泛型

详解C#泛型

《C#零基础入门之百识百例》(八十一)泛型概念介绍 -- 泛型类/结构/接口/委托

C#泛型代理泛型接口泛型类型泛型方法

Java泛型 VS C#泛型 (伪泛型 VS 真泛型)

C# 泛型