I identify as:
public class Sandeep : Person
{
private string Name { get; set; }
private int Age { get; set; }
private List<string> Hobbies { get; set; }
public Sandeep()
{
Name = "Sandeep Pradhan";
Age = 24;
Hobbies = new List<string> { "Tech Learning", "Badminton", "Gym", "Music", "Sleeping" };
}
public string CurrentLocation()
{
return "Hyderabad, Telengana, India";
}
public Dictionary<string, List<string>> Currently()
{
return new Dictionary<string, List<string>>
{
{ "Learning", new List<string> { ".Net" } },
{ "Tinkering", new List<string> { "Console App", "Database", "Web Api", "C#" } }
};
}
}