Write a program in C# for Creating Indexers
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace prg7 { class Program { static void Main(string[] args) { om b = new om(); b[0] = 1; b[1] = 2; Console.WriteLine("values are=" +b[0]); Console.WriteLine(b[1]); } } } class om { int[] arr = new int[5]; public int this[int index] { get { return arr[index]; } set { arr[index] = value; } } } OUTPUT values are=1 2