Пример #1
0
        internal static string GetString(Expression expression, Func <Type, string> getTypeName)
        {
            var builder = new ExpressionStringBuilder(getTypeName, expression);

            return(builder.ToString());
        }
Пример #2
0
 /// <devdoc>
 /// TODO: remove this code when https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=331583
 /// is fixed.
 /// </devdoc>
 public static string ToStringFixed(this Expression expression, bool useFullTypeName = false)
 {
     return(ExpressionStringBuilder.GetString(expression, useFullTypeName));
 }
Пример #3
0
 /// <devdoc>
 /// TODO: remove this code when https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=331583
 /// is fixed.
 /// </devdoc>
 public static string ToStringFixed(this Expression expression)
 {
     return(ExpressionStringBuilder.GetString(expression));
 }
Пример #4
0
        internal static string GetString(Expression expression, bool useFullName = false)
        {
            var builder = new ExpressionStringBuilder(expression, useFullName);

            return(builder.ToString());
        }