Click here to Skip to main content
15,886,362 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!

 
GeneralRe: Steve Ballmer says tech firms should be as accountable as NBA teams Pin
TheGreatAndPowerfulOz7-Jun-17 9:25
TheGreatAndPowerfulOz7-Jun-17 9:25 
GeneralRe: Steve Ballmer says tech firms should be as accountable as NBA teams Pin
raddevus7-Jun-17 9:52
mvaraddevus7-Jun-17 9:52 
GeneralRe: Steve Ballmer says tech firms should be as accountable as NBA teams Pin
TheGreatAndPowerfulOz7-Jun-17 9:54
TheGreatAndPowerfulOz7-Jun-17 9:54 
GeneralRe: Steve Ballmer says tech firms should be as accountable as NBA teams Pin
PIEBALDconsult7-Jun-17 11:08
mvePIEBALDconsult7-Jun-17 11:08 
NewsC# 7.2 and 8.0 Roadmap Pin
Kent Sharkey7-Jun-17 7:43
staffKent Sharkey7-Jun-17 7:43 
GeneralRe: C# 7.2 and 8.0 Roadmap Pin
Marc Clifton7-Jun-17 8:21
mvaMarc Clifton7-Jun-17 8:21 
GeneralRe: C# 7.2 and 8.0 Roadmap Pin
Dan Neely8-Jun-17 3:18
Dan Neely8-Jun-17 3:18 
GeneralRe: C# 7.2 and 8.0 Roadmap Pin
Jon McKee7-Jun-17 9:09
professionalJon McKee7-Jun-17 9:09 
Would anyone explain what on Earth that section with Span<T> and "ref-likes" was about? Their first point sounds like they think collections are thread-safe by default which is woefully not the case. Also simply pushing a type onto the stack does not make it immune to tearing.

Then they mention managed pointers not being allowed on the heap. First off, how would you store a reference type as a field inside a reference type then (see below)? Second, I know C++/CLI allows managed pointers on the GC heap (and the native heap too with an explicit GCHandle) and though C++/CLI isn't C# they're both .NET/CLR languages.

The third point is just sort of... true in general? Like yea, that's how stacks and heaps work. I feel like I'm missing something Sigh | :sigh:

C#
void main() 
{
  A a = new A(); //Ooohhh nooo- Oh wait, this is actually fine.
}
public class A
{
  public B field1 = new B();
}
public class B { }

GeneralRe: C# 7.2 and 8.0 Roadmap Pin
TheGreatAndPowerfulOz7-Jun-17 10:55
TheGreatAndPowerfulOz7-Jun-17 10:55 
GeneralRe: C# 7.2 and 8.0 Roadmap Pin
Jon McKee7-Jun-17 11:50
professionalJon McKee7-Jun-17 11:50 
GeneralRe: C# 7.2 and 8.0 Roadmap Pin
Chris Maunder8-Jun-17 4:32
cofounderChris Maunder8-Jun-17 4:32 
GeneralRe: C# 7.2 and 8.0 Roadmap Pin
Rob Grainger7-Jun-17 23:42
Rob Grainger7-Jun-17 23:42 
GeneralRe: C# 7.2 and 8.0 Roadmap Pin
Chris Maunder8-Jun-17 4:31
cofounderChris Maunder8-Jun-17 4:31 
NewsYou’ll never guess where Russian spies are hiding their control servers Pin
Kent Sharkey7-Jun-17 7:39
staffKent Sharkey7-Jun-17 7:39 
NewsWSJ Miffed with Google for Massive Drop in Search Traffic After Ending Free Readership Pin
Dan Neely7-Jun-17 4:47
Dan Neely7-Jun-17 4:47 
GeneralRe: WSJ Miffed with Google for Massive Drop in Search Traffic After Ending Free Readership Pin
Nelek7-Jun-17 5:17
protectorNelek7-Jun-17 5:17 
GeneralRe: WSJ Miffed with Google for Massive Drop in Search Traffic After Ending Free Readership Pin
Rob Grainger7-Jun-17 23:49
Rob Grainger7-Jun-17 23:49 
GeneralRe: WSJ Miffed with Google for Massive Drop in Search Traffic After Ending Free Readership Pin
Nelek8-Jun-17 0:05
protectorNelek8-Jun-17 0:05 
GeneralRe: WSJ Miffed with Google for Massive Drop in Search Traffic After Ending Free Readership Pin
Dan Neely8-Jun-17 3:20
Dan Neely8-Jun-17 3:20 
GeneralRe: WSJ Miffed with Google for Massive Drop in Search Traffic After Ending Free Readership Pin
TheGreatAndPowerfulOz7-Jun-17 7:25
TheGreatAndPowerfulOz7-Jun-17 7:25 
NewsDon't be left behind by IPv6 deployment, ISOC warns enterprises Pin
Kent Sharkey6-Jun-17 11:55
staffKent Sharkey6-Jun-17 11:55 
GeneralRe: Don't be left behind by IPv6 deployment, ISOC warns enterprises Pin
Dan Neely7-Jun-17 2:53
Dan Neely7-Jun-17 2:53 
NewsPuppet Labs releases its 2017 State of DevOps report Pin
Kent Sharkey6-Jun-17 11:22
staffKent Sharkey6-Jun-17 11:22 
NewsAn early look at C# 7.1: Part 2 Pin
Kent Sharkey6-Jun-17 10:14
staffKent Sharkey6-Jun-17 10:14 
GeneralRe: An early look at C# 7.1: Part 2 Pin
BillWoodruff6-Jun-17 22:22
professionalBillWoodruff6-Jun-17 22:22 

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.