How to share a definition between application

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

I have a definition of struct, I want to use it in both WebService and Web
application.
How can I share it between application?
 
ad said:
I have a definition of struct, I want to use it in both WebService and Web
application.
How can I share it between application?

Create a class library project, and create a reference to that class
library from both of your other projects. Put the struct in the class
library project.
 
Back
Top