fork download
  1. using static System.Console;
  2. using System.Collections.Generic;
  3.  
  4. public class Program {
  5. public static void Main() => WriteLine(ToQueryString(new { nome = "Nome", valor = 10 }));
  6.  
  7. public static string ToQueryString<T>(T model) {
  8. var query = new Dictionary<string, string>();
  9. foreach (var property in typeof(T).GetProperties())
  10. query.Add(property.Name, property.GetValue(model, null).ToString());
  11. return string.Join("&", query);
  12. }
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/252611/101
Success #stdin #stdout 0.02s 16700KB
stdin
Standard input is empty
stdout
[nome, Nome]&[valor, 10]