The compilers accuse error when I try to zero a vector with the command vetor[10] = {0};
And it only accuses error in this line because I also used it in the int vetor[10] = {0} attribution and there does not acknowledge error....
I need to back up an SQLite Android database.
Ex: I'll change the device and I need to copy the application's DB to be loaded on the other Android phone.
Is there a workable solution?
I developed an application that uses SQLite to write...
I was doing some tests using Opera browser (same engine / Chrome engine) and in the HTTP request this is sent:
Referrer Policy: no-referrer-when-downgrade
For example in http://localhost I get this:
Request URL: http://localhost/
R...
I have an ASP.NET MVC application and would like to know what are the best practices that microsoft indicates in the organizational question of the solution, using the latest technologies like ASP.NET Identity.
Assuming the following scenario...
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...
When I install the r tag on my machine I noticed that the menus and the exits of the console were all in Portuguese.
How do I change to English? Within RGui I did not find any option to change the language and it is not possible to r...
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);...