-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
MetadataAsSource should show scoped modifiers #64906
Comments
@RikkiGibson There doesn't seem to be completion for |
Also we likely will want to handle Lines 1769 to 1792 in 7a9b666
and make sure use implicit vs explicit type works for |
I'm working on completion. |
@cston / @RikkiGibson is this still a 17.5 candidate? |
Re-triaging this. Deleted the question about showing 'scoped out' for implicit 'scoped' in out parameters. I think we don't need to be more verbose than the language default in this case. re: quick info generally, I'm honestly not sure whether/how to show the Definitely think that MetadataAsSource should show scoped modifiers. At a glance it seems like it doesn't. See MemoryMarshal.CreateSpan. (The point of this method is to be unsafe and claim it doesn't capture the parameter when it really does.) //
// Summary:
// Creates a new span over a portion of a regular managed object.
//
// Parameters:
// reference:
// A reference to data.
//
// length:
// The number of T elements that reference contains.
//
// Type parameters:
// T:
// The type of the data items.
//
// Returns:
// A span.
public static Span<T> CreateSpan<T>(ref T reference, int length); |
Definitely think that MetadataAsSource should show scoped modifiers. At a glance it seems like it doesn't. See MemoryMarshal.CreateSpan. (The point of this method is to be unsafe and claim it doesn't capture the parameter when it really does.)
The text was updated successfully, but these errors were encountered: