Click here to Skip to main content
15,888,242 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Provided you are 27 or less, NASA can show you the picture they took on the day you were born. Pin
Chris C-B6-Feb-22 20:41
Chris C-B6-Feb-22 20:41 
GeneralRe: Provided you are 27 or less, NASA can show you the picture they took on the day you were born. Pin
Richard MacCutchan6-Feb-22 6:39
mveRichard MacCutchan6-Feb-22 6:39 
GeneralRe: Provided you are 27 or less, NASA can show you the picture they took on the day you were born. Pin
kmoorevs6-Feb-22 7:43
kmoorevs6-Feb-22 7:43 
GeneralRe: Provided you are 27 or less, NASA can show you the picture they took on the day you were born. Pin
yacCarsten6-Feb-22 16:14
yacCarsten6-Feb-22 16:14 
AnswerRe: Provided you are 27 or less, NASA can show you the picture they took on the day you were born. Pin
megaadam6-Feb-22 13:30
professionalmegaadam6-Feb-22 13:30 
JokeRe: Provided you are 27 or less, NASA can show you the picture they took on the day you were born. Pin
RossMW6-Feb-22 16:41
professionalRossMW6-Feb-22 16:41 
GeneralRe: Provided you are 27 or less, NASA can show you the picture they took on the day you were born. Pin
MikeTheFid7-Feb-22 5:00
MikeTheFid7-Feb-22 5:00 
General.NET Core 3.1 or .NET 6? Pin
Marc Clifton5-Feb-22 8:41
mvaMarc Clifton5-Feb-22 8:41 
We had .NET Core 3.1, then .NET 5 (which was the next version of .NET Core 3.1, skipping "4" so as not to confuse people with .NET 4.x, gee, thanks) and now we have .NET 6, aka .NET Core 6.

enum CoreVersion
{
  DotNetCore31,
  Net5,
  Net6,
  WhatsCore,
  WhoCares
}

var you = Programmer.Factory();

if (you.AreUsing(".NET") && you.AreUsing("Core"))
{
   CoreVersion version = you.WhichDoYouUse();
   Console.WriteLine(version);
}

? How's that for a survey question? Laugh | :laugh:

One thing that is driving me nuts about .NET 6 is the null checks. Absurdly invasive.

Yes, the whole null check madness can be disabled in the .csproj by setting <Nullable>enable</Nullable> to <Nullable>disable</Nullable>

At least we have that option, otherwise it's:

#pragma warning disable CS8714 // The type cannot be used as type parameter in the generic type or method. Nullability of type argument doesn't match 'notnull' constraint.
#pragma warning disable CS8602 // Dereference of a possibly null reference.
#pragma warning disable CS8600 // Converting null literal or possible null value to non-nullable type.
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.

And who knows how many other pragmas.

GeneralRe: .NET Core 3.1 or .NET 6? Pin
Chris Maunder5-Feb-22 9:31
cofounderChris Maunder5-Feb-22 9:31 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
PIEBALDconsult5-Feb-22 9:38
mvePIEBALDconsult5-Feb-22 9:38 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Marc Clifton5-Feb-22 9:46
mvaMarc Clifton5-Feb-22 9:46 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
PIEBALDconsult5-Feb-22 15:20
mvePIEBALDconsult5-Feb-22 15:20 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Afzaal Ahmad Zeeshan5-Feb-22 12:13
professionalAfzaal Ahmad Zeeshan5-Feb-22 12:13 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Dan Neely7-Feb-22 3:10
Dan Neely7-Feb-22 3:10 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Super Lloyd5-Feb-22 14:55
Super Lloyd5-Feb-22 14:55 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
harold aptroot5-Feb-22 17:55
harold aptroot5-Feb-22 17:55 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
RickZeeland5-Feb-22 20:17
mveRickZeeland5-Feb-22 20:17 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Marc Clifton6-Feb-22 11:01
mvaMarc Clifton6-Feb-22 11:01 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Luca Leonardo Scorcia6-Feb-22 10:50
professionalLuca Leonardo Scorcia6-Feb-22 10:50 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Marc Clifton6-Feb-22 11:03
mvaMarc Clifton6-Feb-22 11:03 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Member 91670576-Feb-22 21:07
Member 91670576-Feb-22 21:07 
GeneralRe: .NET Core 3.1 or .NET 6? Pin
Richard Deeming6-Feb-22 23:22
mveRichard Deeming6-Feb-22 23:22 
GeneralHow $323M in crypto was stolen from a blockchain bridge called Wormhole Pin
abmv5-Feb-22 3:12
professionalabmv5-Feb-22 3:12 
GeneralRe: How $323M in crypto was stolen from a blockchain bridge called Wormhole Pin
englebart5-Feb-22 4:26
professionalenglebart5-Feb-22 4:26 
GeneralRe: How $323M in crypto was stolen from a blockchain bridge called Wormhole Pin
Gerry Schmitz5-Feb-22 6:21
mveGerry Schmitz5-Feb-22 6:21 

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.