P
Paul Tomlinson
All, I have a very simple class and all I want to do is override the add and
remove methods for logging, thats it.
This is my class, however the only methods which I can override are equals,
gethashcode and tostring.
Why can't I override add and remove?
using System;
using System.Collections.Specialized;
namespace myApp
{
/***************************************************************************/
// CustomHybridDictionary
/***************************************************************************/
public class CustomHybridDictionary : HybridDictionary
{
/***************************************************************************/
// default constructor
/***************************************************************************/
public CustomHybridDictionary()
{
}
}
}
remove methods for logging, thats it.
This is my class, however the only methods which I can override are equals,
gethashcode and tostring.
Why can't I override add and remove?
using System;
using System.Collections.Specialized;
namespace myApp
{
/***************************************************************************/
// CustomHybridDictionary
/***************************************************************************/
public class CustomHybridDictionary : HybridDictionary
{
/***************************************************************************/
// default constructor
/***************************************************************************/
public CustomHybridDictionary()
{
}
}
}