After thinking about this for a minute, I now understand why I cannot access the base class of an intereted resource in a static method. I've assuming that its because the base class itself is not static.

So my question...
Do you know if there is a way to expose my own method in a DLL where that method uses the base, inherted class (in this case FileStream)?

public int MyReadMethod(byte[] array, int count)
{
retrurn base.Read(array, 0, count);
}

Thanks tons

Blake