-
-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve formatting for casting #407
Labels
Milestone
Comments
This probably somewhat relates to #7, or at least there will be some edge cases that involve both. |
After #7 this is how things end up var attribute = (AssemblyFileVersionAttribute)typeof(JsonConvert)
.GetTypeInfo()
.Assembly.GetCustomAttribute(typeof(AssemblyFileVersionAttribute));
var attribute =
(AssemblyFileVersionAttribute)typeof(JsonConvert________________________________________________)
.GetTypeInfo()
.Assembly.GetCustomAttribute(typeof(AssemblyFileVersionAttribute)); |
#338 is related |
belav
added a commit
that referenced
this issue
Apr 4, 2022
shocklateboy92
pushed a commit
that referenced
this issue
Apr 6, 2022
* Better breaking for casting closes #407 * Handling some edge cases * Another edge case
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Right now, the casting formatting makes everything squished together and it's a bit hard to decipher at first glance what's happening.
The text was updated successfully, but these errors were encountered: