Example #1
0
        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
        {
            var strValue = value as string;

            return(strValue == null ? null : ExpressionScope.Parse(strValue));
        }