-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Remove ISchema in BinaryLoader #2139
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
Conversation
@@ -472,6 +472,11 @@ private abstract class MetadataTableOfContentsEntry | |||
|
|||
protected readonly BinaryLoader Parent; | |||
|
|||
/// <summary> | |||
/// Retuen the getter to the stored entry value as <see cref="Delegate"/>. |
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.
type-o Retuen
#Resolved
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.
Thank you. Fixed. #Resolved
558d3cd
to
49fa1f6
Compare
@@ -757,7 +730,7 @@ public void GetMetadata<TValue>(string kind, int col, ref TValue value) | |||
/// </summary> | |||
private const ulong ReaderFirstVersion = 0x0001000100010002; | |||
|
|||
public Schema Schema { get { return _schema; } } | |||
public Schema Schema { get { return _outputSchema; } } |
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.
public Schema Schema { get { return _outputSchema; } } [](start = 8, length = 54)
Cool thanks @wshin. If perchance you happen to need to do some more commits, no harm C# 6/7-ifying these properties. But no hard feelings if you don't of course, just if quite convenient. #Resolved
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.
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.
Thanks @wschin !
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.
As title. Parade of #1501 continues today.