Understanding Primary Constructors in C#
Objective:
Explore the concept of primary constructors in C# and understand their significance in simplifying class initialization.
Introduction:
C# 12 introduced primary constructors, a feature widely used in modern programming. They offer a streamlined approach to class initialization, making code cleaner and more efficient.
Why do we need them?
Traditionally, when injecting something into classes or records, we needed to introduce backing fields for internal use. This approach was almost the same:
Introduction of backing fields
Introduction of constructor
Initialization of the original field in the constructor
Use internally
The Role of Primary Constructors:
With primary constructors, achieving the same result is much simpler:
Declare the dependency in the primary constructor
Use internally
This results in a much simpler process, eliminating the need for additional fields and constructors.
Assignment Tasks:
Explore the concept of primary constructors in C#.
Implement primary constructors in a sample class or record.
Compare the simplicity of using primary constructors with traditional approaches.
Share your findings and insights.
Conclusion:
Primary constructors in C# offer a more elegant and concise way to initialize classes, simplifying code and enhancing readability. Embrace this feature to streamline your programming experience.
๐ Have you tried using primary constructors in your code? Share your experience with us! ๐
Objective:
Explore the concept of primary constructors in C# and understand their significance in simplifying class initialization.
Introduction:
C# 12 introduced primary constructors, a feature widely used in modern programming. They offer a streamlined approach to class initialization, making code cleaner and more efficient.
Why do we need them?
Traditionally, when injecting something into classes or records, we needed to introduce backing fields for internal use. This approach was almost the same:
Introduction of backing fields
Introduction of constructor
Initialization of the original field in the constructor
Use internally
The Role of Primary Constructors:
With primary constructors, achieving the same result is much simpler:
Declare the dependency in the primary constructor
Use internally
This results in a much simpler process, eliminating the need for additional fields and constructors.
Assignment Tasks:
Explore the concept of primary constructors in C#.
Implement primary constructors in a sample class or record.
Compare the simplicity of using primary constructors with traditional approaches.
Share your findings and insights.
Conclusion:
Primary constructors in C# offer a more elegant and concise way to initialize classes, simplifying code and enhancing readability. Embrace this feature to streamline your programming experience.
๐ Have you tried using primary constructors in your code? Share your experience with us! ๐
Understanding Primary Constructors in C#
Objective:
Explore the concept of primary constructors in C# and understand their significance in simplifying class initialization.
Introduction:
C# 12 introduced primary constructors, a feature widely used in modern programming. They offer a streamlined approach to class initialization, making code cleaner and more efficient.
Why do we need them?
Traditionally, when injecting something into classes or records, we needed to introduce backing fields for internal use. This approach was almost the same:
Introduction of backing fields
Introduction of constructor
Initialization of the original field in the constructor
Use internally
The Role of Primary Constructors:
With primary constructors, achieving the same result is much simpler:
Declare the dependency in the primary constructor
Use internally
This results in a much simpler process, eliminating the need for additional fields and constructors.
Share your experience with us! ๐
Objective:
Explore the concept of primary constructors in C# and understand their significance in simplifying class initialization.
Introduction:
C# 12 introduced primary constructors, a feature widely used in modern programming. They offer a streamlined approach to class initialization, making code cleaner and more efficient.
Why do we need them?
Traditionally, when injecting something into classes or records, we needed to introduce backing fields for internal use. This approach was almost the same:
Introduction of backing fields
Introduction of constructor
Initialization of the original field in the constructor
Use internally
The Role of Primary Constructors:
With primary constructors, achieving the same result is much simpler:
Declare the dependency in the primary constructor
Use internally
This results in a much simpler process, eliminating the need for additional fields and constructors.
Share your experience with us! ๐
---Banking System Database----------------
create database Bank
go
use bank
go
------------create branch table-------------
CREATE TABLE Branch
(
id INT primary key,
name VARCHAR(50) UNIQUE,
address VARCHAR(50)
)
CREATE TABLE Card
(
id INT PRIMARY KEY,
number varchar(50) unique,
expiration_date date,
is_blocked bit
)
CREATE TABLE Loan_type
(
id int primary key,
type varchar(10) unique,
description varchar(100),
base_amount decimal(10,3),
base_interest_rate decimal(10,3)
)
CREATE TABLE Customer
(
id int primary key,
branch_id int,
first_name varchar(50),
last_name varchar(50),
date_of_birth date,
gender char(1) check (gender in ('M','F','O')),
Foreign key (branch_id) references Branch(id) on update cascade on delete set null
)
CREATE TABLE Account
(
id int primary key,
customer_id int,
card_id int,
balance char(50),
foreign key (customer_id) references Customer(id) on update cascade on delete set null,
foreign key (card_id) references Card(id) on update cascade on delete set null
)
CREATE TABLE Loan
(
id int primary key,
account_id int,
loan_type_id int,
amount_paid decimal(10,3),
start_date date,
due_date date,
foreign key (account_id) references Account(id) on update cascade on delete set null,
foreign key(loan_type_id) references Loan_type(id) on update cascade on delete set null
)
CREATE TABLE [Transaction]
(
id int primary key,
account_id int,
[description] varchar(100),
amount decimal(10,3),
[date] date,
foreign key (account_id) references Account(id) on update cascade on delete set null
)
---Insert record into Branch table------
INSERT INTO Branch(id,name,address) VALUES(1,'Allahabad Bank','Allahabad')
INSERT INTO Branch(id,name,address) VALUES(2,'Bank of Baroda','Varanasi')
INSERT INTO Branch(id,name,address) VALUES(3,'Canara Bank','Kanpur')
INSERT INTO Branch(id,name,address) VALUES(4,'ICICI Bank','Noida')
INSERT INTO Branch(id,name,address) VALUES(5,'Kotak Bank','Delhi')
select * from Branch
--Insert record into Card table---
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('1', '1234567890123456', '2021-01-30', 1);
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('2', '1234567890123457', '2022-08-20', 1);
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('3', '1234567890123458', '2023-03-21', 1);
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('4', '1234567890123459', '2021-01-14', 0);
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('5', '1234567890123450', '2021-06-9', 1);
select * from Card
---Insert record into Loan_type---
INSERT INTO Loan_type (id, type, description, base_amount, base_interest_rate) VALUES (1, 'Mortgages', 'description1', 10000, 15);
INSERT INTO Loan_type (id, type, description, base_amount, base_interest_rate) VALUES (3, 'Appliance', 'description3', 3000, 25);
INSERT INTO Loan_type (id, type, description, base_amount, base_interest_rate) VALUES (4, 'Payday', 'description4', 1000, 50);
INSERT INTO Loan_type (id, type, description, base_amount, base_interest_rate) VALUES (5, 'Business', 'description5', 7000, 35);
select * from Loan_type
---Insert into Customer table----
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (1, 1, 'Paul', 'Panaitescu', '1996-10-7', 'M');
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (2, 3, 'Constantin', 'Tarau', '1998-09-15', 'M');
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (3, 1, 'Marius', 'Munteanu', '1998-07-31', 'M');
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (4, 2, 'Dragos', 'Mocanasu', '1998-12-31', 'F');
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (5, 2, 'Daenerys', 'Targaryen', '1895-10-7', 'F');
select * from Customer
create database Bank
go
use bank
go
------------create branch table-------------
CREATE TABLE Branch
(
id INT primary key,
name VARCHAR(50) UNIQUE,
address VARCHAR(50)
)
CREATE TABLE Card
(
id INT PRIMARY KEY,
number varchar(50) unique,
expiration_date date,
is_blocked bit
)
CREATE TABLE Loan_type
(
id int primary key,
type varchar(10) unique,
description varchar(100),
base_amount decimal(10,3),
base_interest_rate decimal(10,3)
)
CREATE TABLE Customer
(
id int primary key,
branch_id int,
first_name varchar(50),
last_name varchar(50),
date_of_birth date,
gender char(1) check (gender in ('M','F','O')),
Foreign key (branch_id) references Branch(id) on update cascade on delete set null
)
CREATE TABLE Account
(
id int primary key,
customer_id int,
card_id int,
balance char(50),
foreign key (customer_id) references Customer(id) on update cascade on delete set null,
foreign key (card_id) references Card(id) on update cascade on delete set null
)
CREATE TABLE Loan
(
id int primary key,
account_id int,
loan_type_id int,
amount_paid decimal(10,3),
start_date date,
due_date date,
foreign key (account_id) references Account(id) on update cascade on delete set null,
foreign key(loan_type_id) references Loan_type(id) on update cascade on delete set null
)
CREATE TABLE [Transaction]
(
id int primary key,
account_id int,
[description] varchar(100),
amount decimal(10,3),
[date] date,
foreign key (account_id) references Account(id) on update cascade on delete set null
)
---Insert record into Branch table------
INSERT INTO Branch(id,name,address) VALUES(1,'Allahabad Bank','Allahabad')
INSERT INTO Branch(id,name,address) VALUES(2,'Bank of Baroda','Varanasi')
INSERT INTO Branch(id,name,address) VALUES(3,'Canara Bank','Kanpur')
INSERT INTO Branch(id,name,address) VALUES(4,'ICICI Bank','Noida')
INSERT INTO Branch(id,name,address) VALUES(5,'Kotak Bank','Delhi')
select * from Branch
--Insert record into Card table---
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('1', '1234567890123456', '2021-01-30', 1);
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('2', '1234567890123457', '2022-08-20', 1);
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('3', '1234567890123458', '2023-03-21', 1);
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('4', '1234567890123459', '2021-01-14', 0);
INSERT INTO Card (id, number, expiration_date, is_blocked) VALUES ('5', '1234567890123450', '2021-06-9', 1);
select * from Card
---Insert record into Loan_type---
INSERT INTO Loan_type (id, type, description, base_amount, base_interest_rate) VALUES (1, 'Mortgages', 'description1', 10000, 15);
INSERT INTO Loan_type (id, type, description, base_amount, base_interest_rate) VALUES (3, 'Appliance', 'description3', 3000, 25);
INSERT INTO Loan_type (id, type, description, base_amount, base_interest_rate) VALUES (4, 'Payday', 'description4', 1000, 50);
INSERT INTO Loan_type (id, type, description, base_amount, base_interest_rate) VALUES (5, 'Business', 'description5', 7000, 35);
select * from Loan_type
---Insert into Customer table----
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (1, 1, 'Paul', 'Panaitescu', '1996-10-7', 'M');
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (2, 3, 'Constantin', 'Tarau', '1998-09-15', 'M');
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (3, 1, 'Marius', 'Munteanu', '1998-07-31', 'M');
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (4, 2, 'Dragos', 'Mocanasu', '1998-12-31', 'F');
INSERT INTO Customer (id, branch_id, first_name, last_name, date_of_birth, gender) VALUES (5, 2, 'Daenerys', 'Targaryen', '1895-10-7', 'F');
select * from Customer
๐1
--- Insert into Account---
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (1, 1, 1, '1000');
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (2, 2, 2, '100');
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (3, 3, 3, '200');
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (4, 5, 4, '50000');
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (5, 5, 5, '1000000');
select * from Account
---Insert record for Loan table---
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (1, 1, 3, '0', '2020-05-18', '2023-05-18');
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (2, 5, 1, '0', '2019-08-12', '2021-05-25');
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (3, 4, 2, '100', '2019-05-13', '2024-05-14');
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (4, 2, 5, '1000', '2018-05-25', '2021-05-21');
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (5, 1, 4, '5000', '2020-05-20', '2023-05-07');
select * from Loan
---Insert record for Transaction table----
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (1, 1, 'description 100', 1000.90, '2020-05-18');
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (2, 2, 'description 200', 500.80, '2019-12-07');
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (3, 5, 'description 300', 100.90, '2018-06-30');
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (4, 5, 'description 400', 5060.7, '2020-01-24');
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (5, 5, 'description 500', 500.67, '2018-01-24');
select * from [Transaction]
-----------The End-----------
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (1, 1, 1, '1000');
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (2, 2, 2, '100');
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (3, 3, 3, '200');
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (4, 5, 4, '50000');
INSERT INTO Account (id, customer_id, card_id, balance) VALUES (5, 5, 5, '1000000');
select * from Account
---Insert record for Loan table---
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (1, 1, 3, '0', '2020-05-18', '2023-05-18');
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (2, 5, 1, '0', '2019-08-12', '2021-05-25');
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (3, 4, 2, '100', '2019-05-13', '2024-05-14');
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (4, 2, 5, '1000', '2018-05-25', '2021-05-21');
INSERT INTO Loan (id, account_id, loan_type_id, amount_paid, start_date, due_date) VALUES (5, 1, 4, '5000', '2020-05-20', '2023-05-07');
select * from Loan
---Insert record for Transaction table----
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (1, 1, 'description 100', 1000.90, '2020-05-18');
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (2, 2, 'description 200', 500.80, '2019-12-07');
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (3, 5, 'description 300', 100.90, '2018-06-30');
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (4, 5, 'description 400', 5060.7, '2020-01-24');
INSERT INTO [Transaction] (id, account_id, description, amount, date) VALUES (5, 5, 'description 500', 500.67, '2018-01-24');
select * from [Transaction]
-----------The End-----------
๐3
SQL_For_Data_Scientists_A_beginner's_Guide_for_Building_Datasets.pdf
14.9 MB
๐ Exciting news for aspiring Data Scientists! ๐
Embark on your journey into the realm of data analysis with our latest guide: "SQL For Data Scientists: A Beginner's Guide for Building Datasets for Analysis." ๐๐ป
In this comprehensive beginner's guide, you'll delve into the fundamentals of SQL, mastering the skills needed to build robust datasets for analysis. Whether you're a seasoned professional looking to enhance your skill set or a newcomer eager to explore the world of data science, this guide is tailored just for you! ๐โจ
Ready to take your first steps towards becoming a data analysis expert? Join us on this exciting adventure! Access the guide now and unlock the secrets of SQL for data scientists. ๐ก
๐ Join our Telegram community @coder_baba for more insights, resources, and discussions on data science and programming. Let's learn and grow together! ๐ฑ๐ฌ
#DataScience #SQL #BeginnersGuide #DataAnalysis #LearnToCode #DataScienceCommunity #JoinUs #TelegramGroup #CoderBaba #LinkedInLearning
Embark on your journey into the realm of data analysis with our latest guide: "SQL For Data Scientists: A Beginner's Guide for Building Datasets for Analysis." ๐๐ป
In this comprehensive beginner's guide, you'll delve into the fundamentals of SQL, mastering the skills needed to build robust datasets for analysis. Whether you're a seasoned professional looking to enhance your skill set or a newcomer eager to explore the world of data science, this guide is tailored just for you! ๐โจ
Ready to take your first steps towards becoming a data analysis expert? Join us on this exciting adventure! Access the guide now and unlock the secrets of SQL for data scientists. ๐ก
๐ Join our Telegram community @coder_baba for more insights, resources, and discussions on data science and programming. Let's learn and grow together! ๐ฑ๐ฌ
#DataScience #SQL #BeginnersGuide #DataAnalysis #LearnToCode #DataScienceCommunity #JoinUs #TelegramGroup #CoderBaba #LinkedInLearning
๐ซก1
list of essential programming terms without the plugariasum, adorned with emojis:
Array: A data structure that stores a collection of elements of the same type in contiguous memory locations. ๐
Boolean: A data type that represents true or false values. ๐ต๐ด
Conditional Statement: A statement that executes different code based on a condition. โ๏ธ
Debugging: The process of identifying and fixing errors or bugs in a program. ๐๐
Exception: An event that occurs during the execution of a program that disrupts the normal flow of instructions. โ ๏ธ
Function: A block of code that performs a specific task and can be called multiple times in a program. ๐
GUI (Graphical User Interface): A visual way for users to interact with a computer program using graphical elements like windows, buttons, and menus. ๐ป
HTML (Hypertext Markup Language): The standard markup language used to create web pages. ๐
Integer: A data type that represents whole numbers without any fractional part. 123
JSON (JavaScript Object Notation): A lightweight data interchange format commonly used for transmitting data between a server and a web application. ๐
Loop: A programming construct that allows repeating a block of code multiple times. ๐
Method: A function that is associated with an object in object-oriented programming. ๐
Null: A special value that represents the absence of a value. โช๏ธ
Object-Oriented Programming (OOP): A programming paradigm based on the concept of "objects" that encapsulate data and behavior. ๐งฑ
Pointer: A variable that stores the memory address of another variable. ๐
Queue: A data structure that follows the First-In-First-Out (FIFO) principle. ๐ถโโ๏ธ๐ถโโ๏ธ
Recursion: A programming technique where a function calls itself to solve a problem. ๐
String: A data type that represents a sequence of characters. ๐
Tuple: An ordered collection of elements, similar to an array but immutable. ๐ฆ
Variable: A named storage location in memory that holds a value. ๐ฆ
While Loop: A loop that repeatedly executes a block of code as long as a specified condition is true. ๐
follow me for more @coder_baba
Array: A data structure that stores a collection of elements of the same type in contiguous memory locations. ๐
Boolean: A data type that represents true or false values. ๐ต๐ด
Conditional Statement: A statement that executes different code based on a condition. โ๏ธ
Debugging: The process of identifying and fixing errors or bugs in a program. ๐๐
Exception: An event that occurs during the execution of a program that disrupts the normal flow of instructions. โ ๏ธ
Function: A block of code that performs a specific task and can be called multiple times in a program. ๐
GUI (Graphical User Interface): A visual way for users to interact with a computer program using graphical elements like windows, buttons, and menus. ๐ป
HTML (Hypertext Markup Language): The standard markup language used to create web pages. ๐
Integer: A data type that represents whole numbers without any fractional part. 123
JSON (JavaScript Object Notation): A lightweight data interchange format commonly used for transmitting data between a server and a web application. ๐
Loop: A programming construct that allows repeating a block of code multiple times. ๐
Method: A function that is associated with an object in object-oriented programming. ๐
Null: A special value that represents the absence of a value. โช๏ธ
Object-Oriented Programming (OOP): A programming paradigm based on the concept of "objects" that encapsulate data and behavior. ๐งฑ
Pointer: A variable that stores the memory address of another variable. ๐
Queue: A data structure that follows the First-In-First-Out (FIFO) principle. ๐ถโโ๏ธ๐ถโโ๏ธ
Recursion: A programming technique where a function calls itself to solve a problem. ๐
String: A data type that represents a sequence of characters. ๐
Tuple: An ordered collection of elements, similar to an array but immutable. ๐ฆ
Variable: A named storage location in memory that holds a value. ๐ฆ
While Loop: A loop that repeatedly executes a block of code as long as a specified condition is true. ๐
follow me for more @coder_baba
๐1
Learn Apps Development
https://youtu.be/pIUmldMrRqs
https://youtu.be/pIUmldMrRqs
YouTube
From Beginner to Pro: Develop a C# Desktop App + SQL Database | Step-by-Step Tutorial | source code
Learn C# by Building a Complete C#.Net Desktop App + SQL Server Database | with source code. From Beginner to Pro: Develop a C# Desktop App + SQL Database | Step-by-Step Tutorial | source code
๐ Dive into the world of C# programming with this comprehensiveโฆ
๐ Dive into the world of C# programming with this comprehensiveโฆ
๐ซก1
Pi is a new digital currency developed by Stanford PhDs, with over 55 million members worldwide. To claim your Pi, follow this link https://minepi.com/coderbaba and use my username (coderbaba) as your invitation code.
Pi Network
Pi Network - Home Page
Pi is a network of tens of millions of humans mining Pi cryptocurrency to use and build the Web3 app ecosystem.
Join CoderBaba whatsapp channel for DSA study materials
Data Structures video tutorials
Data Structures and Algorithms: ๐
NCSU - CSC 316 - Data Structures: ๐
Introduction to Computer Science: ๐ป
Linear Algebra: ๐งฎ
Introduction to Probability Theory: ๐ฒ
Maths for Big Data and Machine Learning: ๐
Essence of Calculus: ๐
Machine Learning by Andrew Ng: ๐ค
Machine Learning by Sentdex: ๐
Machine Learning: ๐ง
Machine Learning on Tabular Data: ๐
Natural Language Processing (NLP): ๐
Computer Vision: ๐
Neural Networks for Machine Learning: ๐ง
Applied Machine Learning: ๐
TensorFlow 2.0: ๐ง
Data Structures Easy to Advanced Course - Full Tutorial from a Google Engineer: ๐ผ
https://whatsapp.com/channel/0029Va9Vfn29Bb5pXUTn6i30/219
Data Structures video tutorials
Data Structures and Algorithms: ๐
NCSU - CSC 316 - Data Structures: ๐
Introduction to Computer Science: ๐ป
Linear Algebra: ๐งฎ
Introduction to Probability Theory: ๐ฒ
Maths for Big Data and Machine Learning: ๐
Essence of Calculus: ๐
Machine Learning by Andrew Ng: ๐ค
Machine Learning by Sentdex: ๐
Machine Learning: ๐ง
Machine Learning on Tabular Data: ๐
Natural Language Processing (NLP): ๐
Computer Vision: ๐
Neural Networks for Machine Learning: ๐ง
Applied Machine Learning: ๐
TensorFlow 2.0: ๐ง
Data Structures Easy to Advanced Course - Full Tutorial from a Google Engineer: ๐ผ
https://whatsapp.com/channel/0029Va9Vfn29Bb5pXUTn6i30/219
WhatsApp.com
CoderBaba | WhatsApp Channel
CoderBaba WhatsApp Channel. Programming, coding and web development๐ Welcome to the official WhatsApp channel of CoderBaba! ๐
๐ Follow Us:
YT Channel:
https://www.youtube.com/coderbaba
Instagram : https://www.instagram.com/coderbaba
Telegram: https://t.me/coder_baba.โฆ
๐ Follow Us:
YT Channel:
https://www.youtube.com/coderbaba
Instagram : https://www.instagram.com/coderbaba
Telegram: https://t.me/coder_baba.โฆ
Ajax Control Toolkit ASP.NET.pdf
463 KB
AJAX Control in ASP .Net PDF Notes
๐ Are you curious about the basics of .NET Technology? Check out this insightful video! ๐ฅ
Whether you're a seasoned developer or just starting your journey in tech, understanding .NET is essential. This video covers fundamental topics such as the .NET Framework, JIT compiler, and more.
Watch the video here: https://youtu.be/aLsDDTpxGSo?si=zCXdFi7DLm1KKJwG
Topics covered include:
โฐ 00:01 Introduction
๐ 00:48 Full Stack Developer
๐ 01:53 Course Detailed
๐ก 03:45 Introduction to .NET Framework
๐ป 07:55 What .NET Represents
๐ 09:12 What is Framework
๐ง 10:30 JIT Compiler
๐ซ 11:42 What is Not .NET
๐ 12:35 What is DOTNET in ASP.NET
๐ 20:48 DotNet Framework
Don't miss out on this opportunity to enhance your .NET skills! Hit like ๐, subscribe to the channel, and share with your friends. Let's learn and grow together! ๐ช
@coder_baba #coderbaba #coder_baba #dotnet #technology #learning #development #softwareengineering
Whether you're a seasoned developer or just starting your journey in tech, understanding .NET is essential. This video covers fundamental topics such as the .NET Framework, JIT compiler, and more.
Watch the video here: https://youtu.be/aLsDDTpxGSo?si=zCXdFi7DLm1KKJwG
Topics covered include:
โฐ 00:01 Introduction
๐ 00:48 Full Stack Developer
๐ 01:53 Course Detailed
๐ก 03:45 Introduction to .NET Framework
๐ป 07:55 What .NET Represents
๐ 09:12 What is Framework
๐ง 10:30 JIT Compiler
๐ซ 11:42 What is Not .NET
๐ 12:35 What is DOTNET in ASP.NET
๐ 20:48 DotNet Framework
Don't miss out on this opportunity to enhance your .NET skills! Hit like ๐, subscribe to the channel, and share with your friends. Let's learn and grow together! ๐ช
@coder_baba #coderbaba #coder_baba #dotnet #technology #learning #development #softwareengineering
YouTube
#1 ASP.NET Course 2022 | DotNet Overview,Introduction to .Net Framework | CoderBaba
ASP.NET Course 2022 | DotNet Overview,Introduction to .Net Framework | CoderBabaHello guys in this video you will learn about ASP Dotnet Technology full cour...
๐4โค2