Skipper, I finally got it compiled. Your last comment opened my eyes on the relationships. Now I am getting a runtime stack overflow error on this statement:
publicDictionary<UInt64, FileNameAndFrn> directories
{
get { return directories; } // <== here it is
set { directories = value; }
}
Any thoughts as to how I can handle it?
Thanks.
AlexB
private
Dictionary<UInt64, FileNameAndFrn> directories_ = newDictionary<ulong, FileNameAndFrn> ( );publicDictionary<UInt64, FileNameAndFrn> directories
{
get { return directories; } // <== here it is
set { directories = value; }
}
Any thoughts as to how I can handle it?
Thanks.
AlexB