nealhoang / IndexersCSharp

Indexers in C#

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Indexers in CSharp

Demo Indexers in C#

Employee employee = new Employee
{
    ID = 1,
    Name = "Toai",
    Department = "IT",
    Gender = Gender.Male,
    Salary = 1000,
    Job = "Dev",
    Location = "Ha Noi"
};

Console.WriteLine($"My name is {employee["Name"]} working in {employee["Department"]} department.");
Console.ReadKey();

About

Indexers in C#


Languages

Language:C# 100.0%