A ad Sep 10, 2005 #1 I have a definition of struct, I want to use it in both WebService and Web application. How can I share it between application?
I have a definition of struct, I want to use it in both WebService and Web application. How can I share it between application?
J Jon Skeet [C# MVP] Sep 10, 2005 #2 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? Click to expand... 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.
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? Click to expand... 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.