Click here to Skip to main content
15,881,600 members

The Insider News

   

The Insider News is for breaking IT and Software development news. Post your news, your alerts and your inside scoops. This is an IT news-only forum - all off-topic, non-news posts will be removed. If you wish to ask a programming question please post it here.

Get The Daily Insider direct to your mailbox every day. Subscribe now!

 
NewsSomeone got YouTube videos to play on a 40-Year-old computer that can only display green text Pin
Kent Sharkey4-Jul-22 8:46
staffKent Sharkey4-Jul-22 8:46 
GeneralRe: Someone got YouTube videos to play on a 40-Year-old computer that can only display green text Pin
obermd5-Jul-22 3:39
obermd5-Jul-22 3:39 
NewsAmazon CTO shares the secret to writing great code Pin
Kent Sharkey4-Jul-22 8:46
staffKent Sharkey4-Jul-22 8:46 
NewsHow John Backus’ Fortran beat the machine code ‘priesthood’ Pin
Kent Sharkey4-Jul-22 8:46
staffKent Sharkey4-Jul-22 8:46 
GeneralRe: How John Backus’ Fortran beat the machine code ‘priesthood’ Pin
Joe Woodbury4-Jul-22 22:10
professionalJoe Woodbury4-Jul-22 22:10 
GeneralRe: How John Backus’ Fortran beat the machine code ‘priesthood’ Pin
Kent Sharkey5-Jul-22 4:24
staffKent Sharkey5-Jul-22 4:24 
NewsC# vNext - What could come Pin
Kent Sharkey4-Jul-22 7:16
staffKent Sharkey4-Jul-22 7:16 
GeneralRe: C# vNext - What could come Pin
Dan Neely5-Jul-22 3:15
Dan Neely5-Jul-22 3:15 
Example 1:
Quote:
C#
</div>var timer = new DispatcherTimer
{
    Interval = TimeSpan.FromSeconds(5);
};
// We have to define the lambda function outside of the object initalizer
timer.Tick += (s, e) => { ... };


The proposal exactly wants to tackle that behavior:

C#
var timer = new DispatcherTimer
{
    Interval = TimeSpan.FromSeconds(5);
    timer.Tick += (s, e) => { ... }; // This is now allowed
};



looks like something I'd try to write and then swear at the compiler when it errored. Fixing these things are the best sort of enhancements.Cool | :cool:
Did you ever see history portrayed as an old man with a wise brow and pulseless heart, weighing all things in the balance of reason?
Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful?
--Zachris Topelius

NewsUK Army’s Twitter, YouTube accounts hacked to push crypto scam Pin
Kent Sharkey4-Jul-22 7:16
staffKent Sharkey4-Jul-22 7:16 
NewsGoogle: Half of zero-day exploits linked to poor software fixes Pin
Kent Sharkey4-Jul-22 7:16
staffKent Sharkey4-Jul-22 7:16 
NewsOpen source developers urged to ditch GitHub following Copilot launch Pin
Kent Sharkey3-Jul-22 8:31
staffKent Sharkey3-Jul-22 8:31 
GeneralRe: Open source developers urged to ditch GitHub following Copilot launch Pin
Joe Woodbury3-Jul-22 12:18
professionalJoe Woodbury3-Jul-22 12:18 
GeneralRe: Open source developers urged to ditch GitHub following Copilot launch Pin
Kent Sharkey3-Jul-22 12:34
staffKent Sharkey3-Jul-22 12:34 
GeneralRe: Open source developers urged to ditch GitHub following Copilot launch Pin
Richard Andrew x644-Jul-22 4:36
professionalRichard Andrew x644-Jul-22 4:36 
GeneralRe: Open source developers urged to ditch GitHub following Copilot launch Pin
Greg Utas3-Jul-22 13:55
professionalGreg Utas3-Jul-22 13:55 
GeneralRe: Open source developers urged to ditch GitHub following Copilot launch Pin
Dan Neely5-Jul-22 3:16
Dan Neely5-Jul-22 3:16 
NewsSmart contact lens prototype puts a Micro LED display on top of the eye Pin
Kent Sharkey3-Jul-22 8:16
staffKent Sharkey3-Jul-22 8:16 
GeneralRe: Smart contact lens prototype puts a Micro LED display on top of the eye Pin
David O'Neil3-Jul-22 8:27
professionalDavid O'Neil3-Jul-22 8:27 
GeneralRe: Smart contact lens prototype puts a Micro LED display on top of the eye Pin
Kent Sharkey3-Jul-22 12:44
staffKent Sharkey3-Jul-22 12:44 
GeneralRe: Smart contact lens prototype puts a Micro LED display on top of the eye Pin
David O'Neil3-Jul-22 12:49
professionalDavid O'Neil3-Jul-22 12:49 
GeneralRe: Smart contact lens prototype puts a Micro LED display on top of the eye Pin
Joe Woodbury3-Jul-22 12:20
professionalJoe Woodbury3-Jul-22 12:20 
GeneralRe: Smart contact lens prototype puts a Micro LED display on top of the eye Pin
David O'Neil3-Jul-22 12:46
professionalDavid O'Neil3-Jul-22 12:46 
NewsGoogle hit with more privacy complaints for “deceptive” sign-up process Pin
Kent Sharkey3-Jul-22 8:16
staffKent Sharkey3-Jul-22 8:16 
GeneralRe: Google hit with more privacy complaints for “deceptive” sign-up process Pin
David O'Neil3-Jul-22 8:28
professionalDavid O'Neil3-Jul-22 8:28 
NewsGoogle will pay $90 million to settle antitrust lawsuit with app developers Pin
Kent Sharkey3-Jul-22 8:01
staffKent Sharkey3-Jul-22 8:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.