0
What are the differences between the three? Do they have any other differences? I’m new to development, and I want to learn more.
0
What are the differences between the three? Do they have any other differences? I’m new to development, and I want to learn more.
-1
Estates: Set of characteristics of a given class.
Methods: Class behavior would be equivalent to functions in a structured programming language.
Builder: Initializes an object with past properties.
Class: Set of methods and properties that define a scope.
Object: An element with characteristics defined by a class.
public class Pessoa //Aqui é a classe e a definição de suas propriedades e comportamentos (métodos)
{
private string Nome {get; set;}; //Propriedades da classe
public Pessoa(string _nome) //Construtor
{
nome= _nome;
}
public string FalaNome() //Método que fala o seu nome
{
return "Meu nome é " + nome;
}
}
static void Main()
{
var pessoa = new Pessoa("Felipe"); //Aqui definimos um objeto da classe Pessoa com o nome Felipe
Console.WriteLine(pessoa.FalaNome()); //Imprime Meu nome é Felipe no console
}
Browser other questions tagged c# classes method objects
You are not signed in. Login or sign up in order to post.