Intro to C# with GitHub Copilot in Visual Studio 2022

preview_player
Показать описание
Learn how to leverage GitHub copilot as your pair programming partner in your C# development. We run through a simple example using LINQ.

00:00 Intro
00:57 Generate data
02:01 Using GitHub Copilot Chat to find resources
02:46 Generate LINQ queries
03:42 Execute LINQ queries
05:00 Modify LINQ queries

#visualstudio #dotnet #copilot #githubcopilot #csharp
Рекомендации по теме
Комментарии
Автор

Your channel deserves to reach even more people.

acodersjourney
Автор

If I have visual studio professional and intellicode, will this auto install for me if I update vs?

IIIIIIIIIIIllllllIIIIIIIIIII
Автор

Great tutorial goes straight to the point

ferdsreyes
Автор

Is this somehow dependent on github or is this also working with code only local?

retokaderli
Автор

5:27 It took longer to write the prompt than to just write the code manually

chrismantonuk
Автор

Please bring an option to feed the entire project code to copilot so can get very relavant suggestions instead mismatched versions and outdated code suggestions

m.f.mfazrin
Автор

why you do not want string interpolation? I think is better.

jaiderariza
Автор

Copilot is good and bad all at the same time. It's adding fairly useless comments (which I go back and delete after it generates the code) in the code. A lot of times it suggests code that is completely wrong (it makes up things that don't actually exist). Somethings I ask it and it just shows me my code instead of any kind of answer. The UI for Copilot needs a lot of work as well. The font choices and it's emphasis on larger text is less than ideal.

Arcadenut
Автор

6:03 you keep on deleting copilots suggestion and replacing it with exactly the same thing but an inferior version

officialspock
Автор

You prompted for student - first name - last name, but it gave you student - last name - first name. Does it not read order?

donepearce
Автор

The Scores field is nullable, so the auto generated code is still prone to exceptions.

yolshevsky
Автор

Can u give one more session for how to install github copilot in visualstudio 2022 and how to use it .netcore web api projects.

CodeNinja
Автор

Please bring back the support of ARM for Copilot. There are many people using Mac + Parallel to do the coding. Copilot was working fine until it requires Visual Studio 17.4 (Intel). But VS 17.4 installation forces ARM users to install ARM version only. That’s very strange when Copilot supports VS Code ARM, but not Visual Studio ARM.

ericy
Автор

I can't able to sign in from visual studio

jayakumar
Автор

How did she open github copolit chat that is what I was looking for and she just opens it with out showing you where it is

JBengaIII
Автор

Console.WriteLine($"{student.LastName}, {student.FirstName}"); //is exactly the same as or does the exact same thing
Console.WriteLine("{0}, {1}", student.LastName, student.FirstName); //What do you mean its not the same?

ibrahimhussain
Автор

Looking for context aware copilot, bring an option to feed complete project to copilot so we can get accurate suggestions

mohamedfazrin
Автор

Does copilot for vs has the same functionalities qith copilot for vs code?

Eagler
Автор

it was a mystery on how to open copilot chat, LOL!

veteranconsultant
Автор

Can you explain why you replaced the (perfectly valid) string interpolation two times in this video? Maybe you should have asked copilot about this feature if you don‘t know about it.

Brimerland