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();
        }
原文地址:https://www.cnblogs.com/jasonlai2016/p/11372900.html