Ejemplo n.º 1
0
        public Resource(string resourceKey, string value, ResourceFormat format)
        {
            format.Validate(resourceKey);

            this.ResourceFormat = format;
            this.value          = value;

            this.key = resourceKey;

            this.Transforms = new List <ITransform>();
        }