I am new to WCF, Where do I place the constants for my project?
I generally create a file with a namespace that holds all my static constants. But we cannot have static variables in WCF if the service is per-call or per-session. I don't want magic numbers in my code, I want constants that can be shared through out the project.
Thanks


const? if they change per-call or -session, then they really aren't constants. – Daniel A. White Feb 1 at 14:11