Skip to content

ricardotondello/ricardotondello

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 

Repository files navigation

public class SoftwareEngineer
{
    public string Name { get; }
    public AboutMe AboutMe { get; }
    public IEnumerable<Language> Languages { get; }
    public FunFact FunFact { get; }

    public SoftwareEngineer(string name, AboutMe aboutMe, IEnumerable<Language> languages, FunFact funFact)
    {
        Name = name;
        AboutMe = aboutMe;
        Languages = languages;
        FunFact = funFact;
    }
}

var ricardo = new SoftwareEngineer(
    name: "Ricardo Tondello",
    aboutMe: new AboutMe("I'm currently working at https://www.nmbrs.com as a Software Engineer in Amsterdam 🇳🇱"),
    languages: new[] { "Portuguese 🇧🇷", "English 🇬🇧", "Italian 🤌" }, 
    funFact: throw new BodyException("Right arm not found!"));

Buy Me A Coffee

🏆 GitHub Trophies

trophy

Snake animation

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published