I'm creating a desktop application in C # of registry that will use database. Which database to use?
I was advised to use SQLite , but I'm not fully understanding how to use it.
What version of SQLite should I download, could you help me...
Hello, I'm using C # to create a login system. And I would like to know some formula to close this login window without stopping the application.
I used this.Hide (); to hide the form, but when closing the program it keeps running only hidden. C...
I've done a combo of questions about IEnumerable and IEnumerator to not only help me but everyone who needs a more didactic explanation.
Question 1
Someone could explain in a more didactic way what these
interfaces and...
I have a project in Asp.Net MVC where I would like to add some new libraries.
They are available for download as .dll , but are also available on Manage NuGet Packages .
What is the best way to add the library to the project by addi...
I have the ChamadaEfetuada(MAluno) : bool method that verifies that the call was made for a given student, this method is used in another method ChamadaEfetuada() : bool that instead of checking if the call was made to a single stu...
I'm listing the records of a table with the code below:
SQLiteCommand comando = new SQLiteCommand("SELECT * FROM Cadastro " +filtro, conn);
SQLiteDataReader receber = comando.ExecuteReader();
But before listing, I need to check if there is...
I started a project in college and I'm using Azure to host it. This is my first contact with this tool and I am having great difficulty understanding it. I've already tried tutorials and explanations on the big google, but I only find old things...
I would like to get the elements of my products class and save a txt file as my Serialization method would.
class Program
{
static void Main(string[] args)
{
var products = new List<Product>
{
new Prod...
I have an installer project in Visual Studio 2013. One of the prerequisites for the installation is IISExpress 7.5 or higher.
I was able to put IISExpress 7.5 as a prerequisite:
However, when you try to install the application on a c...