public static Ii B {
get { return B.Instance; }
}
In this context 'B' refers to the property itself, not the class B. So you're trying to recursively call the property get accessor. But since the property returns an Ii instance, and Ii doesn't have an Instance property, it doesn't compile.
Mattias
-- Mattias Sj�gren [EMAIL PROTECTED]
=================================== This list is hosted by DevelopMentor� http://www.develop.com Some .NET courses you may be interested in:
Guerrilla ASP.NET, 10 Nov 2003 in London and 26 Jan 2004, in Los Angeles http://www.develop.com/courses/gaspdotnet
Guerrilla .NET, 8 Dec 2003, in Los Angeles http://www.develop.com/courses/gdotnet
View archives and manage your subscription(s) at http://discuss.develop.com
