class People
{
public int Age { get; private set; }
public string FirstName { get; private set; }
public string LastName { get; private set; }
public People(int age, string firstName, string lastName)
{
Age = age;
FirstName = firstName;
LastName = lastName;
}
public void Present()
{
Console.WriteLine($"Hello, my name is {FirstName} {LastName}. I'm {Age} years old.");
}
}
People Me = new People(22, "Corentin", "Nelhomme");
Me.Present();
Pinned Loading
-
karibsen-studio/krak-lite
karibsen-studio/krak-lite PublicLightweight, privacy-first analytics module for Nuxt. No cookies, no third-party, your own endpoint.
-
Klapy
Klapy PublicForked from intersel/Blapy2
Klapy.ts a refactor of Blapy in TypeScript
JavaScript
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.




