我無法繼續執行下面的代碼。任何人都可以幫忙嗎?索引器與詞典
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Demo_Inidexers
{
public class MyIndexer
{
Dictionary <int,string > testdctnry = new Dictionary<int,string>() ;
public string this[int index,string val ]
{
get
{
string temp;
if (index > 0)
MessageBox .Show ("Hey m Zero");
return testdctnry[index];
}
set
{
if (index > 1)
MessageBox.Show("Setting up");
testdctnry.Add(index, val);
}
}
}
static class Program
{
static void Main()
{
MyIndexer MI = new MyIndexer();
}
}
}
在上面的代碼中,我該如何使用索引器和字典。我對c#很陌生,請幫忙。我想了解索引器。
是什麼類的擺在首位的目的是什麼? 'Dictionary'已經有一個索引器。只要使用它。 – Servy