Exemple #1
0
        /// <summary>
        /// Creates an interpolating space, which executes the injection delegate defined on the interpolating token.
        /// </summary>
        /// <returns></returns>
        public override Space CreateSpace()
        {
            var space = new InterpolatingSpace();

            space.Initialize(Interpolation.CreateValueDelegate <object>());

            return(space);
        }