- Видео 124
- Просмотров 5 032
parvesh
Индия
Добавлен 20 мар 2011
Hello, welcome to my channel.
Partial Properties in C#13
In C#, partial properties are a way to split the declaration of a property across multiple parts of a partial type (class, struct, or interface). This allows different parts of your code to contribute to the definition of a single property.
Просмотров: 5
Видео
Understand params collection feature in .NET 9 in 3 minutes
Просмотров 467 часов назад
In this video we will discuss the new feature introduced in .NET 9 (C# 13) i.e. params collections
How to install .NET 9 on Windows 11
Просмотров 109 часов назад
In this video we will see how we can install .NET 9 on Windows 11 and start using it in Visual Studio 2022
Implement Dependency Injection in 6 minutes in a Console based Application
Просмотров 2112 часов назад
In this video we will see how we can add dependency injection support in a console based application in .NET core and inject configurations object. This is continuation of video where we learnt how to add appsettings.json file to a console based application. If you have not watched that video please use below link and watch that first before continuing on to this video. How to add and use appse...
How to add appsettings.json file in a .NET Console App
Просмотров 2114 часов назад
Here are the steps to add appsettings.json file to console app project 1. Add the package Microsoft.Extensions.Configuration.Json (This will automatically install all the required dependencies) 2. Add appsettings.json 3. Right-click the appsettings.json file to show its Properties window. Then set its "Copy to Output Directory" property to "Copy if newer." This ensures the appsettings.json file...
What is difference between VAR and DYNAMIC keywords in C#
Просмотров 2316 часов назад
var is a statically typed variable. It results in a strongly typed variable, in other words, the data type of these variables is inferred at compile time. This is done based on the type of value that these variables are initialized with. dynamic are dynamically typed variables. This means, their type is inferred at run-time and not the compile time in contrast to var type.
Difference between IEnumerable and IEnumerator in C#
Просмотров 28День назад
IEnumerable is an interface that provides a method to retrieve an enumerator for a collection. Any class that implements IEnumerable can be used with a foreach loop. The word enumeration comes from the Latin word enumerare meaning ‘to count off’ or iterating through a collection of items. "Enumerate" means to count or list things one by one. IEnumerable tells C# compiler how to iterates a colle...
Extension Methods in C#
Просмотров 3314 дней назад
In C#, the extension method concept allows you to add new methods in the existing class or in the structure without modifying the source code of the original type and you do not require any kind of special permission from the original type and there is no need to re-compile the original type. It was introduced in C# 3.0.
Create your own custom code snippets in Visual Studio
Просмотров 3028 дней назад
Tips: Organize your snippets: Create folders within your snippet directory to keep them organized. Use meaningful shortcuts: Choose shortcuts that are easy to remember and don't conflict with existing shortcuts. Create reusable snippets: Create snippets for frequently used code blocks, such as: Common algorithms (e.g., sorting, searching) Template code for classes, interfaces, and methods Datab...
C# Snippets: Unlock Your Coding Potential
Просмотров 2228 дней назад
Code snippets in C# are reusable blocks of code that can be added to a code file. They are used to make coding faster and easier by reducing the need to type repetitive code
Create Custom Keyboard Shortcuts in SSMS
Просмотров 33Месяц назад
In this video we will see, how to create custom keyboard shortcuts in SQL Server Management Studio (SSMS) Using custom keyboard shortcuts you can execute both queries as well as stored procedures #sqlserver #sqlserver #tipsandtricks
How to use Notepad++ without installing it on Windows
Просмотров 43Месяц назад
In this video we will how to get started with portable version of most popular text editor, notepad
C# - Part 102 - Anonymous Methods & Lambda Expression - Tutorial For Beginners
Просмотров 46Месяц назад
Anonymous method is a method without a name. Introduced in C# 2, they provides a way of creating delegate instances without having to write a separate method.
C# - Part 101 - Why we need Events and What is Observer Design Pattern - Tutorial For Beginners?
Просмотров 11Месяц назад
Advantages of using Events in C# Loose Coupling: Events promote loose coupling between components, allowing them to interact without directly knowing each other. Flexibility: They enable a dynamic and extensible way to handle and respond to actions or changes in an application. Observer Pattern: Events are essential for implementing the observer pattern, where an object (the subject or publishe...
Use GitHub Copilot (GHCP) directly in VS Code (FREE!)
Просмотров 33Месяц назад
GitHub Copilot Free provides limited access to select features of Copilot, allowing you to experience AI-powered coding assistance without a subscription. Copilot Free has the following limitations: 1. Code completions are limited to 2000 completions per month. 2. Copilot Chat is limited to 50 chat messages per month. This limit includes both standard chats and multi-file editing chats in VS Co...
C# - Part 100 - Understanding Events With Real Time Example- Tutorial For Beginners
Просмотров 64Месяц назад
C# - Part 100 - Understanding Events With Real Time Example- Tutorial For Beginners
C# - Part 99 - Action vs Func vs Predicate (with example) - Tutorial For Beginners
Просмотров 37Месяц назад
C# - Part 99 - Action vs Func vs Predicate (with example) - Tutorial For Beginners
C# - Part 98 - Predicate Delegate - Tutorial For Beginners
Просмотров 32Месяц назад
C# - Part 98 - Predicate Delegate - Tutorial For Beginners
C# - Part 97 - Func Delegate - Tutorial For Beginners
Просмотров 28Месяц назад
C# - Part 97 - Func Delegate - Tutorial For Beginners
C# - Part 96 - Action Delegate - Tutorial For Beginners
Просмотров 25Месяц назад
C# - Part 96 - Action Delegate - Tutorial For Beginners
C# - Part 95 - Fire and Forget - Tutorial For Beginners
Просмотров 24Месяц назад
C# - Part 95 - Fire and Forget - Tutorial For Beginners
C# - Part 94 - Async | Await | Task | ContinueWith | WhenAny | WhenAll - Tutorial For Beginners
Просмотров 67Месяц назад
C# - Part 94 - Async | Await | Task | ContinueWith | WhenAny | WhenAll - Tutorial For Beginners
Migrate Stored Procedure From Oracle to SQL Server Database Using SSMA
Просмотров 34Месяц назад
Migrate Stored Procedure From Oracle to SQL Server Database Using SSMA
C# - Part 93 - Hitting API Endpoint Using Async and Await - Tutorial For Beginners
Просмотров 22Месяц назад
C# - Part 93 - Hitting API Endpoint Using Async and Await - Tutorial For Beginners
C# - Part 92 - Async and Await - Tutorial For Beginners
Просмотров 20Месяц назад
C# - Part 92 - Async and Await - Tutorial For Beginners
Copy Data From Oracle To SQL Server Database Using SSMA (SQL Server Migration Assistant)
Просмотров 109Месяц назад
Copy Data From Oracle To SQL Server Database Using SSMA (SQL Server Migration Assistant)
C# - Part 91 - Impact of using Multi-Threading in a program - Tutorial For Beginners
Просмотров 14Месяц назад
C# - Part 91 - Impact of using Multi-Threading in a program - Tutorial For Beginners
Getting Started with SSMA - Connect to Oracle and SQL Server Databases
Просмотров 732 месяца назад
Getting Started with SSMA - Connect to Oracle and SQL Server Databases
Install SQL Server Migration Assistant (SSMA) for Oracle on Windows
Просмотров 1132 месяца назад
Install SQL Server Migration Assistant (SSMA) for Oracle on Windows
C# - Part 90 - Removing Deadlock - Tutorial For Beginners
Просмотров 82 месяца назад
C# - Part 90 - Removing Deadlock - Tutorial For Beginners