I'm trying to add conditional breakpoint in VS2015
inside C#
method. Method signature is:
Core(Type type, object value, bool noAutoCreate)
The conditional expression for breakpoint is type.Name.Contains("ltern")
but this condition doesn't work and i receive error message
Why does it happen? How to avoid such problem and create well working conditional breakpoint if i need to catch some type ?