Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • Hi, I am using the class which is present in the other project of the same solution. public class Category { /// <summary> /// Gets or sets the category ID. /// </summary> /// <value>The category ID.</value> public string CategoryID { get; set; } /// <summary> /// Gets or sets the name of the category. /// </summary> /// <value>The name of the category.</value> public string CategoryName { get; set; } } Then how i have to call this. Commented Jul 16, 2010 at 9:34
  • You can reference any class by setting an appropriate XML namespace. For example, xmlns:otherProject="clr-namespace:NamespaceInOtherProject;assembly=OtherAssembly". Then instead of <my:Item ...> you write <otherProject:Item ...>. Commented Jul 17, 2010 at 4:19