Replies: 1 comment 2 replies
-
not that i know of. did you find any? but why do you have an implicit string conversion from person to FullName? isnt that prone to causing bugs? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a class with an implicit operator like this:
public static implicit operator string(Person person) => person.FullName;
When I use Verify it will use the implicit operator instead of serializing the object.
Are there any settings or workaround for this?
Beta Was this translation helpful? Give feedback.
All reactions