Skip to content
View D3ller's full-sized avatar

Organizations

@karibsen-studio

Block or report D3ller

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
d3ller/README.md

Hi i'm Corentin 😶‍🌫️

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(21, "Corentin", "Nelhomme");
Me.Present();

Pinned Loading

  1. d3ller Public