What I understand about data type is that they are formed by three properties, they are:
Assuming what is above I can understand that a class I create for example class Pessoa
:
public class Pessoa
{
private string Nome {get; set;}
public Pessoa()
{
this.Nome = "";
}
}
This Pessoa
class is a data type like string , int , char , or double ? Or can not a class be considered a data type?