-
Notifications
You must be signed in to change notification settings - Fork 4k
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
C# Design Notes for Jan 21, 2015 #98
Comments
So, array slices are basically an improved version of |
While Pattern matching is awesome, I'm still disappointed to know that |
@svick: Yeah I guess. With possible language support. |
@MadsTorgersen Something not mentioned in relation to pattern matching: have discriminated unions been considered? |
@MadsTorgersen @shunsukeaida I proposed a better switch I think a better |
Is there some way to distinguish those from e.g. Roslyn bugs? E.g. some title prefix or so? Labels are good but I can't assign them when reporting the issue I believe. And I think it would be cool to have some minimal format for it, e.g. at least require the description of the problem, a proposed solution, some use cases using the proposed solution. BCL team seems to be doing a good job there with speclets. Also I think some certain yes/no on proposals would be great, so that any GitHub proposal is not only considered, but either rejected, accepted for prototyping, or sent to rework due to some design constraints. Again I think BCL team is doing great with their periodic review approach. |
Here's a theme suggestion. With multi-core becoming commonplace and the nice Task and TPL apis, I see more and more concurrent programming, even if just a few (2-3) background threads. It would be very nice to get some help from C# regarding correctness here. Immutable data structures are a big help, but for mutable data the main issue is that nothing formally indicates which thread has data ownership, or if data is shared in a read-only fashion, or if data must be accessed inside a lock. In complex programs and large teams this stuff is really hard to get right. C# was a rockstar when it introduced |
I would love to see more native language support for metaprogramming. Mixins and/or traits would certainly help with code reuse challenges and I would personally love to see one of these make it in. While T4 templates work okay for code generation, they often feel clunky and hacky (for example, even though it's a tooling thing, the fact that VS addins are needed just to consistently evaluate them is a clue something is off). Some kind of language support or hook for code generation would be welcome. I would also love to see some sort of rudimentary support for aspects and weaving. PostSharp works well and has a nice API, but requires extra libraries and IL rewriting. Fody aspects work, but there's a really steep learning curve. I'm guessing full AOP support would be way out of scope for this language update, but incremental support or even hooks (perhaps in Roslyn) would be welcomed. There was also mention of improved overload resolution. This has been a particular pain point of mine, especially when dealing with generics and extension methods. For example, it would be awesome if generic constraints were taken into account when determining a match. I understand the reason why they're not considered (I.e., not part of the method signature) but it would be great if there were a way to overcome this. |
+1 AOP can have lots of useful applications, some of them have been requested by the community for a long time. A few examples:
|
@jods4 Of interest may be the fact that @jaredpar, one of the coauthors of the Uniqueness and Reference Immutability for Safe Parallelism paper, is now on the Roslyn team and said:
|
I think |
@MadsTorgersen What do you mean by delegation? Following theories of incomplete objects that get composed by delegation with proper late-binding semantics maybe? |
@agocke Yes, in the original proposal discriminated unions were implemented with record subclassing — similar to case classes in Scala. @MadsTorgersen By the way, regarding the state of pattern matching. If you do decide to consider them for C# 7, will the first prototype be merged into the current Github source as a feature branch? Will the community be able to contribute to such prototypes? I think you've mentioned before that you want to simplify the PR process in a couple of months, so that external feature prototyping/bug fixing would be easier. |
Non-nullable reference types might be better served with another approach. Assess the feasibility of CLR support for describing a non-null reference type. Even if C# cannot currently take advantage of non-nullable reference types there might be another .NET language that figures out how. |
Not about new Visual Basic language version? Is Visual Basic coming to die or was placed in the background? I love VB and I'd love to hear about new features 😄 for it. |
@HoracioFilho They mentioned that they are planning the features for both C# and VB right now.
|
One thing HPC like devs could benefit from, is have the ability to "construct" primitive array types off of memory mapped file, like java's nio supports... I realize this is mainly a runtime feature, rather than a c# feature, is there a "better" place to discuss those? |
Something that I missed before, and reactive extensions almost gave it to me:
|
|
+1 to the Contracts system. There's already a similar concept with type constraints for generics.
An extension to this pattern for functions would be intuitive to anyone familiar with constraints.
Would separate 'ensures' and 'requires' actually be necessary? Could the statement be inferred? |
@agocke: We are trying to come up with a general framework for pattern matching over classes. Ideally there wouldn't be a new "thing" in the language called algebraic datatypes or discriminated unions. Instead there may be compact syntax for describing hierarchies of simple value types (that would happen to be well suited for pattern matching) as a shorthand for class declarations. @ashmind: yeah, maybe it's time to revamp switch. Worth a think. @ashmind: I think we'll go through and apply the labels. We'll build up our processes as we go - the BCL team are ahead of us here, and we'll draw on their experiences. @jods4: safe concurrency is an insanely hard problem. Not sure what we'd do. @somedave: realistically I can't see us doing something about metaprogramming at the language level before we have a very clear idea of a) what would really move the needle for a lot of developers, and b) how to deal with it at a tooling level. @jods4: AOP is notoriously hard to reason about for a developer. It's a very big hammer. @bojanrajkovic, @jonpryor: @biboudis: Full-blown delegation (with this-binding and everything) seems out of the question - that's a whole alternative mechanism to inheritance. But some languages have this nifty little implement-interface-by-redirection trick. Not sure if it's worthwhile or even sane. @apskim: No clear decisions yet as to how we will share prototypes. For the time being, most of the team is heads down making the upcoming version great. This further-out blue sky stuff won't get priority until that's out the door. Yes, would be great to involve the community in prototyping. @Romoku: I'd love to get non-nullable reference types into the CLR. It seems a tall order even there: what's inside an array of non-nullable reference type when it's first created? etc. @HoracioFilho: Yeah, @Romoku has it right. It doesn't make sense to start separate efforts. Let's get the broad brushstrokes worked out and then split out to language-lawyer on the syntax. :-) @damageboy: If I understand you correctly, yes that would be an awesome interop feature: Array-typed "windows" onto native data. Privileged (and unsafe!) methods would create them, but be able to share them with your code. @jvlppm: Yes! When I mentioned "async sequences" this is the kind of thing I had in mind. @MrDoomBringer: Whatever the syntax, it would certainly occupy the same "region" of a method declaration as the constraints. Maybe it makes sense to merge them. |
Technically, you're correct, but there are actually no new features there specific to discriminated unions. :) The method of generating discriminated unions in the draft specification has one (to me very significant) weakness -- it has no specification of completeness checking in switch statements right now. One way to add this would be to add specialized support just for discriminated unions, for example coming up with a new syntax for Alternatively, I would like a spec addition that guarantees that the following data structure provides completeness checking in a switch statement.
It's a little more heavyweight than some de novo syntax, but it works. Obviously I would be volunteering to implement this warning. ;) |
@MadsTorgersen From what I understand of how Eric Lippert and Spec# describe non-null references types the contents of the array cannot be null when observed during the program execution. This means that up to the point of observance the state can be undetermined, but there must be a value at the point of observance. |
@somedave Agreed on the AOP. PostSharp is amazing, but It can be hard to keep it working right on a large team of developers, and it's pretty expensive for all the bells and whistles for a large team as well, even if only a couple of people are even writing the code. Some language level support for generic argument and result manipulation on methods (like OnMethodBoundaryAspect) alone would be a huge step to meeting the need for metaprogramming and supplanting the wonkiness of PostSharp. |
@MadsTorgersen We've saved ourselves literally thousands of lines of code, but it gets pretty expensive and it's a pretty obscure technical expense that is hard to justify to management types. It would also be nice if C#/.NET were the first language/framework with anything approaching the kind of reach it has to REALLY have built-in first-class AOP facilities in a language. AspectJ and the things found in some of the dynamic languages or the LISPs are not exactly getting a lot of attention these days. I'd personally see it as a huge huge win for this new open design process from a developer perspective. |
@MadsTorgersen you understood me perfectly |
For implementing pattern matching, I do not like to use a
|
@jvlppm it would be almost pointless to have a method that returns Granted, the return type could be interfered by the compiler, which would ease refactorings. but it might also increase the programmer error rate by beeing less explicit. I believe it is very important to have a language that decreases the potential error rate by design, which is why non-nullable reference types, readonly values, contracts, pattern matching, and even units/dimensions are a good idea. |
@ggrnd0 the |
Method Contracts should be generalized out to a traits system ( #129 ). |
@AdamSpeight2008 I agree that traits are a powerful concept. However, I am unsure if that can do things like checking the order in which methods are called at compile time, as you can do with contracts. |
@richardtallent i would use the
|
Excellent idea. It also makes it easier to support conditions that need dotted notation, like the following: public contract QuadrantIPoint : Point where value.X >=0 && value.Y >= 0; public contract SSN : string where (value != null) && (value.Length==9) && value.All(c => c >= '0' && c <= '9'); Regarding your comment earlier about pre/post conditions, I agree. This concept would handle many common pre/post conditions, but since the contract is defined outside the method taking or returning it, it would have limited visibility and would not be able to, for example, compare its value to other arguments of the method. So it's not a complete replacement for the functionality of the current contract system, just a way to cleanly deal with classes of contracts that really just boil down to a more constrained version of another type. --Richard |
Abstraction over generics, anyone +1? I mean, I can abstract over types with generics, e.g. This would be very and opens soooo many doors (in functional programming direction mainly, but not only). For example, it would finally be possible to generalise over Or it gives us the ability to write functions that preserve shape, like "you give me a list - I return you a list, you give me a task - I return you a task, you give me an observable - I return you an observable". |
Sum types! |
Apologize if I'm writing to the wrong thread, please direct me if I should post the idea somewhere else or open separate issue for that. From my experience I noticed same typical situation that I write over and over: foreach (var languageVersions in languageData)
{
var language = languageVersions.Key;
var versions = languageVersions.Value;
foreach (var versionFields in versions)
{
var versionNumber = versionFields.Key;
var fields = versionFields.Value;
Process(language, versionNumber, fields);
}
} It would be really handy if there is special support of IDictionary<TKey, TValue> in C# that can simplify the code and make it more expressive. Something like that: foreach (var language, versions in languageData)
{
foreach (var versionNumber, fields in versions)
{
Process(language, versionNumber, fields);
}
} Does anybody think it is a good idea? |
@AlenPelin if
|
@alrz thanks, I will check that. |
@alrz The |
Thanks @gafter for your comments. |
@gafter of course currently it is a syntax error! this is based on my assumption — that pattern matching, tuples, record types, etc are a group of features (in a functional language though) that always come together, otherwise it doesn't make much sense. If we have special syntax for them it should support decomposition everywhere not just in assignments. including
and aforementioned scenarios — which are supported in F# plus a powerful type inference, you don't even need to mention types as I did here. and I didn't quite get what you meant by
of course I did because I'm not intrested in the tuple itself, but just the members. However, in Haskell you can have both at the same time with as-patterns e.g. |
@alrz We already have one set of method overload resolution/dispatch rules. It is too late to replace them with a set that would have made sense if we had started with pattern matching. For example, if we were to do pattern matching for method dispatch as many functional languages do, we would select the overload based on the dynamic type of parameters rather than just upon the static type. Since that would change the behavior of existing code ( |
Design notes have been archived at https://github.com/dotnet/roslyn/blob/future/docs/designNotes/2015-01-21%20C%23%20Design%20Meeting.md but discussion can continue here. |
C# Design Meeting Notes for Jan 21, 2015
Quotes of the day:
Agenda
This is the first design meeting for the version of C# coming after C# 6. We shall colloquially refer to it as C# 7. The meeting focused on setting the stage for the design process and homing in on major themes and features.
See also Language features currently under consideration by the language design group.
#1. Design process
We have had great success sharing design notes publicly on CodePlex for the last year of C# 6 design. The ability of the community to see and respond to our thinking in real time has been much appreciated.
This time we want to increase the openness further:
Design team
The C# 7 design team currently consists of
Anders, as the chief language architect, has ultimate say, should that ever become necessary. Mads, as the language PM for C#, pulls together the agenda, runs the meetings and takes the notes. (Oooh, the power!)
To begin with, we meet 4 hours a week as we decide on the overall focus areas. There will not be a separate Visual Basic design meeting during this initial period, as many of the overall decisions are likely to apply to both and need to happen in concert.
Feature ideas
Anyone can put a feature idea up as an issue on GitHub. We'll keep an eye on those, and use them as input to language design.
A way to gauge interest in a feature is to put it up on UserVoice, where there's a voting system. This is important, because the set of people who hang out in our GitHub repo are not necessarily representative of our developer base at large.
Design notes
Design notes are point-in-time documents, so we will put them up as issues on GitHub. For a period of time, folks can comment on them and the reactions will feed into subsequent meetings.
Owners and proposals
If the design team decides to move on with a feature idea, we'll nominate an owner for it, typically among the design team members, who will drive the activities related to the design of that feature: gathering feedback, making progress between meetings, etc. Most importantly, the owner will be responsible for maintaining a proposal document that describes the current state of that feature, cross-linking with the design notes where it was discussed.
Since the proposals will evolve over time, they should be documents in the repo, with history tracked. When the proposal is first put up, and if there are major revisions, we will probably put up an issue too, as a place to gather comments. There can also be pull requests to the proposals.
We'll play with this process and find a balance.
Other ways of increasing openness
We are very interested in other ideas, such as publishing recordings (or even live streaming?) of the design meeting themselves, and inviting non-Microsoft luminaries, e.g., from major players in the industry, onto the design team itself. We are certainly open to have "guests" (physical or virtual) when someone has insights that we want to leverage.
However, these are things we can get to over time. We are not going to do them right out of the gate.
Decisions
It's important to note that the C# design team is still in charge of the language. This is not a democratic process. We derive immense value from comments and UserVoice votes, but in the end the governance model for C# is benevolent dictatorship. We think design in a small close-knit group where membership is long-term is the right model for ensuring that C# remains tasteful, consistent, not too big and generally not "designed by committee".
If we don't agree within the design team, that is typically a sign that there are offline activities that can lead to more insight. Usually, at the end of the day, we don't need to vote or have the Language Allfather make a final call.
Prototypes
Ideally we should prototype every feature we discuss, so as to get a good feel fro the feature and allow the best possible feedback from the community. That may note be realistic, but once we have a good candidate feature, we should try to fly it.
The cost of the prototyping is an issue. This may be feature dependent: Sometimes you want a quick throwaway prototype, sometimes it's more the first version of an actual implementation.
Could be done by a member of the design team, the product team or the community.
Agenda
It's usually up to Mads to decide what's ready to discuss. Generally, if a design team member wants something on the agenda, they get it. There's no guarantee that we end up following the plan in the meeting; the published notes will just show the agenda as a summary of what was actually discussed.
#2. Themes
If a feature is great, we'll want to add it whether it fits in a theme or not. However, it's useful to have a number of categories that we can rally around, and that can help select features that work well together.
We discussed a number of likely themes to investigate for C# 7.
Working with data
Today’s programs are connected and trade in rich, structured data: it’s what’s on the wire, it’s what apps and services produce, manipulate and consume.
Traditional object-oriented modeling is good for many things, but in many ways it deals rather poorly with this setup: it bunches functionality strongly with the data (through encapsulation), and often relies heavily on mutation of that state. It is "behavior-centric" instead of "data-centric".
Functional programming languages are often better set up for this: data is immutable (representing information, not state), and is manipulated from the outside, using a freely growable and context-dependent set of functions, rather than a fixed set of built-in virtual methods. Let’s continue being inspired by functional languages, and in particular other languages – F#, Scala, Swift – that aim to mix functional and object-oriented concepts as smoothly as possible.
Here are some possible C# features that belong under this theme:
A number of these features focus on the interplay between "kinds of types" and the ways they are used. It is worth thinking of this as a matrix, that lets you think about language support for e.g. denoting the types (type expressions), creating values of them (literals) and consuming them with matching (patterns) :
T
new T()
,new T { x = e }
T x
,var x
,*
int
,double
,bool
5
,.234
,false
5
,.234
,false
string
"Hello"
"Hello"
(T1, T2)
(e1, e2)
(P1, P2)
{ T1 x1, T2 x2 }
new { x1 = e1, x2 = e2 }
{ x1 is P1, x2 is P2 }
T[]
new T[e]
,{ e1, e2 }
{ P1, P2 }
,P1 :: P2
A lot of the matrix above is filled in with speculative syntax, just to give an idea of how it could be used.
We expect to give many of the features on the list above a lot of attention over the coming months: they have a lot of potential for synergy if they are designed together.
Performance and reliability (and interop)
C# and .NET has a heritage where it sometimes plays a bit fast and loose with both performance and reliability.
While (unlike, say, Java) it has structs and reified generics, there are still places where it is hard to get good performance. A top issue, for instance is the frequent need to copy, rather than reference. When devices are small and cloud compute cycles come with a cost, performance certainly starts to matter more than it used to.
On the reliability side, while (unlike, say, C and C++) C# is generally memory safe, there are certainly places where it is hard to control or trust exactly what is going on (e.g., destruction/finalization).
Many of these issues tend to show up in particular on the boundary to unmanaged code - i.e. when doing interop. Having coarse-grained interop isn't always an option, so the less it costs and the less risky it is to cross the boundary, the better.
Internally at Microsoft there have been research projects to investigate options here. Some of the outcomes are now ripe to feed into the design of C# itself, while others can affect the .NET Framework, result in useful Roslyn analyzers, etc.
Over the coming months we will take several of these problems and ideas and see if we can find great ways of putting them in the hands of C# developers.
Componentization
The once set-in-stone issue of how .NET programs are factored and combined is now under rapid evolution.
With generalized extension members as an exception, most work here may not fall in the language scope, but is more tooling-oriented:
This is a theme that shouldn't be driven primarily from the languages, but we should be open to support at the language level.
Distribution
There may be interesting things we can do specifically to help with the distributed nature of modern computing.
Also, await in catch and finally probably didn't make it into VB 14. We should add those the next time around.
Metaprogramming
Metaprogramming has been around as a theme on the radar for a long time, and arguably Roslyn is a big metaprogramming project aimed at writing programs about programs. However, at the language level we continue not to have a particularly good handle on metaprogramming.
Extention methods and partial classes both feel like features that could grow into allowing generated parts of source code to merge smoothly with hand-written parts. But if generated parts are themselves the result of language syntax - e.g. attributes in source code, then things quickly get messy from a tooling perspective. A keystroke in file A may cause different code to be generated into file B by some custom program, which in turn may change the meaning of A. Not a feedback loop we're eager to have to handle in real time at 20 ms keystroke speed!
Oftentimes the eagerness to generate source comes from it being too hard to express your concept beautifully as a library or an abstraction. Increasing the power of abstraction mechanisms in the language itself, or just the syntax for applying them, might remove a lot of the motivation for generated boilerplate code.
Features that may reduce the need for boilerplate and codegen:
Null
With null-conditional operators such as
x?.y
C# 6 starts down a path of more null-tolerant operations. You could certainly imagine taking that further to allow e.g. awaiting or foreach'ing null, etc.On top of that, there's a long-standing request for non-nullable reference types, where the type system helps you ensure that a value can't be null, and therefore is safe to access.
Importantly such a feature might go along well with proper safe nullable reference types, where you simply cannot access the members until you've checked for null. This would go great with pattern matching!
Of course that'd be a lot of new expressiveness, and we'd have to reconcile a lot of things to keep it compatible. In his blog, Eric Lippert mentions a number of reasons why non-nullable reference types would be next to impossible to fully guarantee. To be fully supported, they would also have to be known to the runtime; they couldn't just be handled by the compiler.
Of course we could try to settle for a less ambitious approach. Finding the right balance here is crucial.
Themeless in Seattle
Type providers: This is a whole different kind of language feature, currently known only from F#. We wouldn't be able to just grab F#'s model though; there'd be a whole lot of design work to get this one right!
Better better betterness: In C# we made some simplifications and generalizations to overload resolution, affectionately known as "better betterness". We could think of more ways to improve overload resolution; e.g. tie breaking on staticness or whether constraints match, instead of giving compiler errors when other candidates would work.
Scripting: The scripting dialect of C# includes features not currently allowed in C# "proper": statements and member declarations at the top level. We could consider adopting some of them.
params IEnumerable.
Binary literals and digit separators.
#3. Features
The Matrix above represents a feature set that's strongly connected, and should probably be talked about together: we can add kinds of types (e.g. tuples, records), we can add syntax for representing those types or creating instances of them, and we can add ways to match them as part of a greater pattern matching scheme.
Pattern matching
Core then is to have a pattern matching framework in the language: A way of asking if a piece of data has a particular shape, and if so, extracting pieces of it.
There are probably at least two ways you want to use "patterns":
A strong candidate syntax for the expression syntax is a generalization of the
is
expression: we consider the type in anis
expression just a special case, and start allowing any pattern on the right hand side. Thus, the following would be validis
expressions:Variable declarations in an expression would have the same scope questions as declaration expressions did.
A strong candidate for the switch syntax is to simply generalize current switch statements so that
Other syntaxes you can think of:
Expression-based switch: An expression form where you can have multiple cases, each producing a result value of the same type.
Unconditional deconstruction: It might be useful to separate the deconstruction functionality out from the checking, and be able to unconditionally extract parts from a value that you know the type of:
There is a potential issue here where the value could be null, and there's no check for it. It's probably ok to have a null reference exception in this case.
It would be a design goal to have symmetry between construction and deconstruction syntaxes.
Patterns at least have type testing, value comparison and deconstruction aspects to them.
There may be ways for a type to specify its deconstruction syntax.
In addition it is worth considering something along the lines of "active patterns", where a type can specify logic to determine whether a pattern applies to it or not.
Imagine positional deconstruction or active patterns could be expressed with certain methods:
We could imagine separate syntax for specifying this.
One pattern that does not put new requirements on the type is matching against properties/fields:
Open question: are the variables from patterns mutable?
This has a strong similarity to declaration expressions, and they could coexist, with shared scope rules.
Records
Let's not go deep on records now, but we are aware that we need to reconcile them with primary constructors, as well as with pattern matching.
Array Slices
One feature that could lead to a lot of efficiency would be the ability to have "windows" into arrays - or even onto unmanaged swaths of memory passed along through interop. The amount of copying that could be avoided in some scenarios is probably very significant.
Array slices represent an interesting design dilemma between performance and usability. There is nothing about an array slice that is functionally different from an array: You can get its length and access its elements. For all intents and purposes they are indistinguishable. So the best user experience would certainly be that slices just are arrays - that they share the same type. That way, all the existing code that operates on arrays can work on slices too, without modification.
Of course this would require quite a change to the runtime. The performance consequences of that could be negative even on the existing kind of arrays. As importantly, slices themselves would be more efficiently represented by a struct type, and for high-perf scenarios, having to allocate a heap object for them might be prohibitive.
One intermediate approach might be to have slices be a struct type Slice, but to let it implicitly convert to T[] in such a way that the underlying storage is still shared. That way you can use Slice for high performance slice manipulation (e.g. in recursive algorithms where you keep subdividing), but still make use of existing array-based APIs at the cost of a boxing-like conversion allocating a small object.
ref locals and ref returns
Just like the language today has ref parameters, we could allow locals and even return values to be by
ref
. This would be particularly useful for interop scenarios, but could in general help avoid copying. Essentially you could return a "safe pointer" e.g. to a slot in an array.The runtime already fully allows this, so it would just be a matter of surfacing it in the language syntax. It may come with a significant conceptual burden, however. If a method call can return a variable as opposed to a value, does that mean you can now assign to it?:
You can now imagine getter-only properties or indexers returning refs that can be assigned to. Would this be quite confusing?
There would probably need to be some pretty restrictive guidelines about how and why this is used.
readonly parameters and locals
Parameters and locals can be captured by lambdas and thereby accessed concurrently, but there's no way to protect them from shared-mutual-state issues: they can't be readonly.
In general, most parameters and many locals are never intended to be assigned to after they get their initial value. Allowing
readonly
on them would express that intent clearly.One problem is that this feature might be an "attractive nuisance". Whereas the "right thing" to do would nearly always be to make parameters and locals readonly, it would clutter the code significantly to do so.
An idea to partly alleviate this is to allow the combination
readonly var
on a local variable to be contracted toval
or something short like that. More generally we could try to simply think of a shorter keyword than the establishedreadonly
to express the readonly-ness.Lambda capture lists
Lambda expressions can refer to enclosing variables:
This has a number of consequences, all transparent to the developer:
For these reasons, the recently introduced lambdas in C++ offer the possibility for a lambda to explicitly specify what can be captured (and how). We could consider a similar feature, e.g.:
This ensures that the lambda only captures
name
and no other variable. In a way the most useful annotation would be the empty[]
, making sure that the lambda is never accidentally modified to capture anything.One problem is that it frankly looks horrible. There are probably other syntaxes we could consider. Indeed we need to think about the possibility that we would ever add nested functions or class declarations: whatever capture specification syntax we come up with would have to also work for them.
C# always captures "by reference": the lambda can observe and effect changes to the original variable. An option with capture lists would be to allow other modes of capture, notable "by value", where the variable is copied rather than lifted:
This might not be too useful, as it has the same effect as introducing another local initialized to the value of the original one, and then capture that instead.
If we don't want capture list as a full-blown feature, we could consider allowing attributes on lambdas and then having a Roslyn analyzer check that the capture is as specified.
Method contracts
.NET already has a contract system, that allows annotation of methods with pre- and post-conditions. It grew out of the Spec# research project, and requires post-compile IL rewriting to take full effect. Because it has no language syntax, specifying the contracts can get pretty ugly.
It has often been proposed that we should add specific contract syntax:
One radical idea is for these contracts to be purely runtime enforced: they would simply turn into checks throwing exceptions (or FailFast'ing - an approach that would need further discussion, but seems very attractive).
When you think about how much code is currently occupied with arguments and result checking, this certainly seems like an attractive way to reduce code bloat and improve readability.
Furthermore, the contracts can produce metadata that can be picked up and displayed by tools.
You could imagine dedicated syntax for common cases - notably null checks. Maybe that is the way we get some non-nullability into the system?
The text was updated successfully, but these errors were encountered: