Hey guys,
I'm really puzzled about this error:
Error 1 Feature 'generics' cannot be used because it is not part of the standardized ISO C# language specification C:\Documents and Settings\John Rudd\Desktop\dissertation\custom_plugin\myProtocolPlugin\myProtocolPlugin\Commands.cs 9 54 myProtocolPlugin
Generics IS supported, I've done it on more than one occasion in the same manner too.
Here's the code:
using System;
using System.Collections.Generic;
using System.Text;
namespace myProtocolPlugin
{
class Commands
{
private Dictionary<String, int> hashtable = new Dictionary<String,int>();
}
}