Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System; class IntIndexer
- {
- private string[] myData; public IntIndexer(int size)
- {
- myData = new string[size]; for (int i=0; i < size; i++) { myData[i] = "empty";
- } } public string this[int pos] { get
- { return myData[pos]; } set {
- myData[pos] = value;
- } } static void Main(string[] args) { int size = 10; IntIndexer myInd = new IntIndexer(size); myInd[9] = "Some Value"; myInd[3] = "Another Value"; myInd[5] = "Any Value"; Console.WriteLine("\nIndexer Output\n"); for (int i=0; i < size; i++) { Console.WriteLine("myInd[{0}]: {1}", i, myInd [i]); } } }
- download full Project from Here:
- http://viwright.com/1es0
- --------------------------------
- download full Project from Here:
- http://viwright.com/1es0
- --------------------------------
- download full Project from Here:
- http://viwright.com/1es0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement