I have a class that will be holding information: Id, Name, etc. This is part of a class library written in C#.
2 app's both have project references to the library(DLL).
Both apps are standlone executables.
App1 will initially set the information (Id, Name, etc.)
I want App2 to be able to access the values that were set App1.
I have tried making the library class static and non static but am still unable to get App2 to "see" the values set by App1. I realize I could serialize the data and am trying to avoid doing if possible.