I have interface IResourcePolicy containing the property Version. I have to implement this property which contain value, the code written in other
IResourcePolicy
Version
You mean like this?
class MyResourcePolicy : IResourcePolicy { private string version; public string Version { get { return this.version; } set { this.version = value; } } }