ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

4,692 results

IAmTimCorey

442K subscribers

Latest from IAmTimCorey

IAmTimCorey
328. Do We Still Need QA In Light Of AI

With AI checking my work, do we need a QA department? Is quality assurance still a relevant job? Should people looking to get ...

13:06
328. Do We Still Need QA In Light Of AI

3,031 views

16h ago

IAmTimCorey
Command Line Parsing with System.CommandLine

Last week, we looked at parsing command line arguments in .NET manually. This week, we are going to look at the System.

25:59
Command Line Parsing with System.CommandLine

9,110 views

3d ago

IAmTimCorey
327. How Do I Evaluate a Third Party Tool or Library in the Age of AI?

How do I know when to use a third party tool or library? When seemingly everyone can vibe-code a flashy tool, how do I not get ...

14:30
327. How Do I Evaluate a Third Party Tool or Library in the Age of AI?

5,635 views

7d ago

IAmTimCorey
Free Uno Platform Course (For A Limited Time)!!!

Get the Uno Platform From Start to Finish course for free through the end of September. Just make sure to sign up before this ...

13:02
Free Uno Platform Course (For A Limited Time)!!!

12,038 views

9d ago

IAmTimCorey
Command Line Arguments in C# Apps - What are args and how do we use them?

You probably know that command line arguments exist in .NET apps, but have you ever tried to use them? In this video, we are ...

33:04
Command Line Arguments in C# Apps - What are args and how do we use them?

10,939 views

10d ago

IAmTimCorey
326. Where Do Secrets Belong In My Application?

Where do I put my secrets in my application? Should I encrypt my connection strings? Are user secrets actually secure when they ...

12:16
326. Where Do Secrets Belong In My Application?

12,685 views

2w ago

IAmTimCorey
Garbage Collection in C#

Understand how garbage collection works in C#, what gen0 means, how to optimize memory management, learn what memory ...

26:42
Garbage Collection in C#

18,657 views

2w ago

IAmTimCorey
New IAmTimCorey / DevForge Website, New Course, and Free Stuff!

We just switched over from IAmTimCorey.com to DevForge.com for the main website. See what is new, including a new free ...

15:50
New IAmTimCorey / DevForge Website, New Course, and Free Stuff!

13,965 views

2w ago

IAmTimCorey
325. What Data Should We Log/Trace And What Should We Ignore

How do I know what to log in my application? What information is important to capture in logs? How do I avoid security ...

21:06
325. What Data Should We Log/Trace And What Should We Ignore

16,758 views

3w ago

IAmTimCorey
Stack vs Heap in C# - How They Work, What Goes Where, and the Exceptions

Every time you use a variable in C#, it either goes onto the stack or the heap. But do you know which one and why? And it isn't as ...

37:33
Stack vs Heap in C# - How They Work, What Goes Where, and the Exceptions

19,000 views

3w ago

IAmTimCorey
Garbage Collection in C#

Understand how garbage collection works in C#, what gen0 means, how to optimize memory management, learn what memory ...

26:42
Garbage Collection in C#

18,657 views

2w ago

IAmTimCorey
New IAmTimCorey / DevForge Website, New Course, and Free Stuff!

We just switched over from IAmTimCorey.com to DevForge.com for the main website. See what is new, including a new free ...

15:50
New IAmTimCorey / DevForge Website, New Course, and Free Stuff!

13,965 views

2w ago

IAmTimCorey
How To Learn C# in 2023 - Learning Path, Tips & Tricks, and More

How do I learn C# well? What order should I learn it in? Are there other topics that I should learn after I learn the basics? What can ...

46:37
How To Learn C# in 2023 - Learning Path, Tips & Tricks, and More

405,406 views

3y ago

IAmTimCorey
326. Where Do Secrets Belong In My Application?

Where do I put my secrets in my application? Should I encrypt my connection strings? Are user secrets actually secure when they ...

12:16
326. Where Do Secrets Belong In My Application?

12,685 views

2w ago

IAmTimCorey
151. How Do I Become a C# Expert?

How do I become a C# expert? What aspects of C# should I concentrate on? What things do I need to memorize or remember?

14:29
151. How Do I Become a C# Expert?

38,351 views

3y ago

IAmTimCorey
Understanding Exception Handling in C# - throw, Stack Traces, and more

Handling exceptions in C# means more than just using try/catch. Knowing how to read a stack trace, understanding the different ...

39:07
Understanding Exception Handling in C# - throw, Stack Traces, and more

10,388 views

1mo ago

IAmTimCorey
Entity Framework Best Practices - Should EFCore Be Your Data Access of Choice?

Entity Framework is an amazing set of tooling around data access. With EFCore, that tooling becomes even more powerful.

2:33:32
Entity Framework Best Practices - Should EFCore Be Your Data Access of Choice?

860,073 views

6y ago

IAmTimCorey
Command Line Arguments in C# Apps - What are args and how do we use them?

You probably know that command line arguments exist in .NET apps, but have you ever tried to use them? In this video, we are ...

33:04
Command Line Arguments in C# Apps - What are args and how do we use them?

10,939 views

10d ago

IAmTimCorey
306. The Dangers of Fast-Moving Development with AI

Isn't the amount of work an AI can do a good thing? Bug fixes and new features are being added faster than ever. Are there any ...

17:17
306. The Dangers of Fast-Moving Development with AI

7,697 views

5mo ago

IAmTimCorey
14 Ways to Simplify Your C# Code

As C# has matured, there have been a number of quality of life changes that can make your code simpler and easier to read.

44:58
14 Ways to Simplify Your C# Code

24,347 views

1y ago

IAmTimCorey
Task vs ValueTask in C#

ValueTask is a way to memory-optimize your application and reduce pressure on your garbage collector. But you need to know ...

32:17
Task vs ValueTask in C#

16,490 views

2mo ago

IAmTimCorey
309. You Are Climbing the Wrong Ladder

Why do some people just not work out in management? What should my next step be in my development career? Is a senior ...

14:57
309. You Are Climbing the Wrong Ladder

3,703 views

4mo ago

IAmTimCorey
Intro to Windows Forms (WinForms) in .NET 6

Windows Forms, also known as WinForms, is one of the original project types in .NET. It is designed to be a rapid application ...

1:35:50
Intro to Windows Forms (WinForms) in .NET 6

312,944 views

4y ago

IAmTimCorey
Introduction to ASP.NET Core MVC in C# plus LOTS of Tips

ASP.NET MVC is still one of the most popular web frameworks for C#. So what has changed in the .NET Core version? In this ...

1:03:56
Introduction to ASP.NET Core MVC in C# plus LOTS of Tips

347,943 views

6y ago

IAmTimCorey
C# Async / Await - Make your app more responsive and faster with asynchronous programming

Asynchronous programming can be intimidating. What is even worse is when you think you learned how to do something and ...

38:57
C# Async / Await - Make your app more responsive and faster with asynchronous programming

1,068,983 views

8y ago

IAmTimCorey
Wiring Up SQL to Our API - C# on Linux Episode 14

We now have a SQL database to talk to. Let's connect to it in our API project. Full Training Courses: https://www.DevForge.com ...

40:57
Wiring Up SQL to Our API - C# on Linux Episode 14

3,235 views

4mo ago

IAmTimCorey
Dependency Injection in .NET Core (.NET 6)

Dependency Injection is a great way to reduce coupling, increase testability, and make applications easier to upgrade over time.

1:00:32
Dependency Injection in .NET Core (.NET 6)

222,127 views

4y ago

IAmTimCorey
288. The Best Approach for Building a Large Web Application

What is the best approach for building a large web application? How do you approach it so that you have a successful outcome?

29:18
288. The Best Approach for Building a Large Web Application

13,492 views

9mo ago