System.Linq.Dynamic.Res.SimpleTypeExpected C# (CSharp) Method

SimpleTypeExpected() public static method

public static SimpleTypeExpected ( string type, string @operator, int argumentNumber ) : IFormattedMessage
type string
@operator string
argumentNumber int
return IFormattedMessage
		public static IFormattedMessage SimpleTypeExpected(string type, string @operator, int argumentNumber)
		{
			return "String, number or bool expected for {operator} operator in #{argumentNumber} argument instead of '{type}'.".Localize(new { type, @operator, argumentNumber });
		}
	}