How could I declare a variable var public so I could get the data back.
What would be the declaration of these unfilled variants:
var tbuscar = ?;
var retorno = ?;
public bool CarregaProdutosDermaClube(string consult...
How to add functions in a native C # class, in my case, I tried to do in System.Math just as test:
public class Math
{
public static double test(double a)
{
return a;
}
}
And call it like this:
Math.test(10);...
I was reviewing some methods of an ASP.NET MVC project and found some cases where only .ToList() is used and others where .ToList<type>() is used (where type is a type of object used in context).
Imagine that only with...
I've tried connecting the linker, and be the recommended procedures. I wanted to know if it is normal an apk made using Xamarin.Forms start from 60mb. And if it is not, what to do to reduce the size.
What is the best way to set up a query in C #? Is it advisable to use concatenation with the + operator? For example:
query += " WHERE nome LIKE '%" + nome + "%'";
Here is a% w of% that I set as an example to illustrate the situat...
I have been doing a lot of research, reading various source codes from other languages and I have never found an answer to my question, what method of SEFAZ web services should I call?
I'm working with this WS http://nfe.fazenda.mg.gov.br/...
My List:
public class Carro
{
public int Ano;
public double Valor;
}
List<Carro> Fiat = new List<Carro>();
Fiat.Add(new Carro {Ano = 2000, Valor = 5000 });
Fiat.Add(new Carro {Ano = 2000, Valor = 6000 });
Fiat.Add(new Carro...