📜 ⬆️ ⬇️

What we expect from C # 4.0

What we expect from C # 4.0



What programmers want:




What I miss:



================================================= =============


What is supposed to be changed / added:

1. Improved support for IronPython, IronRuby
(it will be easier to use "their" classes)

Support for the dynamic realm will be introduced:

static void Main ( string [] args)
{
dynamic
{
object MyNewDynamicObject = LookUpAndGetDynamicObject ();
MyNewDynamicObject.CallSomeMethod (); // call the method
MyNewDynamicObject.GetSomeString = "value" ; // set the field
MyNewDynamicObject [5] = 25; // set the data to the collection
}
}

2. Add some of the functional languages

3. Add new features or facilitate existing ones.
simultaneous access and parallelization of operations.

4. Fill up the arsenal of C # tools from dynamic programming languages.


Watch the video with Design Team C # 4.0
Promise to reveal some or all of the innovations at PDC 2008

================================================= =============


PS

Maybe I could not find all the information about what programmers want,
write if you did not find your "option" would be very interesting.

Pps

Topic name was changed from
"What awaits us in C # 4.0" on "What do we expect from C # 4.0",
because it is quite a bit you can write about what is really coming :)

Pps

Accidentally missed and did not add a “pre-conclusion”, it goes after the green line.

Source: https://habr.com/ru/post/40026/


All Articles