public class Human {
protected string Name { get; set;}
protected string Nationality { get; set; }
protected string Me { get; set; }
public string FavoriteBand { get; set; }
public List<object> Technologies { get; set; } = new List<object>();
public List<string> Languages {get; set;} = new List<string>();
public Human() {
// About me
this.Name = "Paulo Henrique";
this.Nationality = "Brazilian";
this.FavoriteBand = "Hands Like House";
this.Me = "Music enthusiastic | Programming lover ❤";
// Tecnologies
this.Technologies.Add(new
{
Javascript = new string[] { "ReactJS", "Appium", "Nodejs" },
Csharp = new string[] { ".NET Core", "ASP.NET Core", "LINQ", "Universal Windows Platform" },
APIs = new string[] { "REST", "OData", "SOAP" },
CloudComputing = new string[] { "Azure", "Azure Functions", "Azure Blob Storage" }
});
//Languages
this.Language.Add("Fluent Portuguese");
this.Language.Add("Intermediate English");
}
}
💬 Let's talk about C# and Javascript?