Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am investigating Windows 8 Store app development, and am having trouble locating the following members

Type.IsClass

System.ComponentModel.DesignerProperties.IsInDesignTool

Visual studio claims they don't exist, but MSDN suggests they should.

I am obviously missing something silly: Can anyone point me in the right direction please?

Regards

John.

share|improve this question

1 Answer

up vote 5 down vote accepted

The IsClass property has moved to the TypeInfo class. Basically you need to replace;

bool result = type.IsClass;

with;

bool result = type.GetTypeInfo().IsClass;

GetTypeInfo() is an extension method from the System.Reflection namespace, no not obviously visible on System.Type unless you're already using System.Reflection.

The IsInDesignTool property has moved to another place too and changed name;

bool result = Windows.ApplicationModel.DesignMode.DesignModeEnabled;
share|improve this answer
Cool, Thank you so much. – John Sep 26 '12 at 17:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.