Message from @FrostyCrits

Discord ID: 645053259261935654


2019-11-16 00:07:21 UTC  

I play some older games that use DX9

2019-11-16 00:07:27 UTC  

Can i install Visual Studio 2019 on that

2019-11-16 00:07:39 UTC  

I know theres a Mac version

2019-11-16 00:07:54 UTC  

VS2019 might have an entry in the Wine AppDB

2019-11-16 00:08:58 UTC  

then again, you might have issues compiling C# code. I don't know if there are toolchains to compile to PE format that work in Wine

2019-11-16 00:09:01 UTC  

although there probably should be

2019-11-16 00:09:05 UTC  

Unfortunately not

2019-11-16 00:09:11 UTC  

but 2017 is supported

2019-11-16 00:09:18 UTC  

isn't VSCode a fork of Visual Studio?

2019-11-16 00:09:23 UTC  

no no

2019-11-16 00:09:35 UTC  

VSCode isnt an IDE really

2019-11-16 00:09:43 UTC  

its more of a light text editor

2019-11-16 00:09:51 UTC  

that has IDE features tacked in

2019-11-16 00:09:52 UTC  

Whats the latest, I think they were up to .net core 3 on linux

2019-11-16 00:10:13 UTC  

last I checked

2019-11-16 00:10:37 UTC  

.net core 2.26 is the latest that is all supported by the stuff i need

2019-11-16 00:10:51 UTC  

But .net core 3 is stable and out

2019-11-16 00:11:01 UTC  

I've only heard of VSCode. Never used it or explored it much further

2019-11-16 00:11:12 UTC  

my IDE is vim 😎

2019-11-16 00:11:21 UTC  

VSCode is really nice but can't hold a candle to the VS IDE

2019-11-16 00:11:23 UTC  

(or Atom when I'm lazy)

2019-11-16 00:12:44 UTC  

VS Code right, Visual Studio 2019 left

https://cdn.discordapp.com/attachments/228313705669066752/645053607963525120/unknown.png

2019-11-16 00:12:47 UTC  

I use VSCode to edit my js stuff

2019-11-16 00:13:07 UTC  

or... vscode middle left lol

2019-11-16 00:14:33 UTC  

Visual Studio 2019 is like... 30 GB and VS code is like 200MB lol

2019-11-16 00:15:29 UTC  

I havnt tried the 2019 one

2019-11-16 00:15:30 UTC  

@FitnessByHeatherHeyer the apostraphail in your name frustrates me to no end. good job!

2019-11-16 00:16:09 UTC  

I still have 2017

2019-11-16 00:16:10 UTC  

I am most used to 2017 but 2019 allows for .net core 3.0 support fully

2019-11-16 00:16:36 UTC  

I like the UI changes they made in 2019. they smashed up the top bar a bit to give more code space

2019-11-16 00:19:07 UTC  

unless you care about checking out the latest latest .net core 3.0 stuff and also get the latest C# 8.0 language features then i wouldnt worry bout upgrading

2019-11-16 00:20:17 UTC  

null coalesce assignement ??= operator is so cool in c#8

https://cdn.discordapp.com/attachments/228313705669066752/645055507517931520/image.png

2019-11-16 00:20:36 UTC  

that does what

2019-11-16 00:21:01 UTC  

the top is syntax sugar for the bottom

2019-11-16 00:21:18 UTC  

which is basically, youve got a _requestBuilder field thats not initialized

2019-11-16 00:21:37 UTC  

I shouldn't have asked, I haven't done C# in years

2019-11-16 00:21:39 UTC  

lol

2019-11-16 00:21:53 UTC  

and it only initializes it and allocates the memory if or when it gets asked for in the RequestBuilder property

2019-11-16 00:22:20 UTC  

oh so it's a listener of sorts

2019-11-16 00:23:10 UTC  

its like a "if its null, then instantiate it the first time its asked for, and then every time after, itll be instantiated so just return that version you created the first time you asked for it"