-
Notifications
You must be signed in to change notification settings - Fork 2
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
Jcs/txn report #411
Jcs/txn report #411
Conversation
Issue #410 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't test, but code looks good.
Sloth.Core/Domain/Transfer.cs
Outdated
@@ -163,6 +163,8 @@ public string FullObjectToString() | |||
} | |||
return result; | |||
} | |||
|
|||
public string ShortFinancialSegmentString => $"{FinancialSegmentString?[0..13]}..."; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've never seen this w/o using string.substr()
but if this works it's ok to me. clear enough what's happening.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it takes the first 13 characters of the string. I'll add a comment
No description provided.