

Incerto da dove
iniziare?
Track
Certificato
Sviluppo Web con C#
4.8+
★★★★★
★★★★★
2360 recensioni
Beginner
Questo percorso è suddiviso in più corsi, partendo dai concetti base di C#, spostandosi lentamente verso concetti più avanzati e infine portando allo Sviluppo Web con ASP.NET. Mostra di più
C#
SQL
HTML/CSS
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity TeamsWhat you will learn
- Build a strong foundation in C#, mastering essential syntax, data types, and object-oriented programming concepts
- Enhance your C# skills with advanced techniques, improving efficiency, readability, and maintainability of your code
- Learn the fundamentals of SQL, understanding how to query and manipulate databases effectively
- Advance your SQL knowledge by mastering joins, subqueries, indexing, and performance optimization
- Get introduced to .NET with C#, exploring its framework, libraries, and tools for building robust applications
- Understand the essentials of HTML to create structured, well-formatted web pages
- Take your C# expertise to the next level with advanced .NET techniques, learning how to build scalable and high-performance applications
- 282 chapters
- 33 hours
- 293 tasks
Trusted by employees of leading companies
Learning track content
Module 1 / C# Basics
In this section we will get an introduction to C#. Moreover, we will also learn some basic elements of the C# language.
In any programming language we have to deal with different types of data. In this section we will learn about that.
- Integer Data TypesAnteprima
- Challenge: Declaring Explicitly Typed VariablesAnteprima
- Floating-Point and DoubleAnteprima
- BooleansAnteprima
- CharacterAnteprima
- StringAnteprima
- Strings ChallengeAnteprima
- Basic String FormattingAnteprima
- Challenge: String FormattingAnteprima
- Declaring ConstantsAnteprima
- Basic Type CastingAnteprima
- Type Casting PracticeAnteprima
- Basic Type ConversionAnteprima
- Basic Coding PracticeAnteprima
In this section we will learn about features of C# that help us control the flow of the program such as executing pieces of code based on conditions.
- Comparison OperatorsAnteprima
- Logical OperatorsAnteprima
- Challenge: OperatorsAnteprima
- Order of OperationsAnteprima
- If StatementAnteprima
- Challenge: if ConditionAnteprima
- else KeywordAnteprima
- Challenge: else KeywordAnteprima
- if-else ChainAnteprima
- Challenge: if, else-if, elseAnteprima
- switch StatementAnteprima
- Challenge: SwitchAnteprima
In this section we will learn about how to deal with repetitive tasks in programming.
Arrays are an important part of any programming language as they let us group together and manipulate a large amount of similar data. In this section we will learn about Arrays and how to use them for practical applications.
In this section we will learn about one of of the most widely used and essential features of C# called Methods. We will also explore its uses through creative practice tasks.
- What are Methods?Anteprima
- Creating and Calling MethodsAnteprima
- Challenge: Methods CreationAnteprima
- Method ParametersAnteprima
- Challenge: Method with ParametersAnteprima
- Method Return ValuesAnteprima
- Challenge: Return ValuesAnteprima
- Local & Global ScopesAnteprima
- Challenge: ScopesAnteprima
- What's Next?Anteprima
Module 2 / C# Beyond Basics
In this section we will learn data structures like Lists and Dictionaries. We will also learn how to read and write files. In the end we will look at how to deal with unexpected errors which can occur during the program's execution.
- What are Lists?Anteprima
- Practicing List DeclarationAnteprima
- List MethodsAnteprima
- What are Dictionaries?Anteprima
- Practicing DictionariesAnteprima
- Reading Files using StreamReaderAnteprima
- Reading Files using File MethodsAnteprima
- Writing FilesAnteprima
- Error HandlingAnteprima
- Practicing Error HandlingAnteprima
In this section we will learn about some more advanced structures for storing data, namely Structs and Enumerators. We will learn how to use them and we will look at some practice examples as well.
- What are Structs?Anteprima
- Defining & Using a StructureAnteprima
- Practicing StructsAnteprima
- Structs with Other Data StructuresAnteprima
- Struct MethodsAnteprima
- Correctly Accessing Fields in Struct MethodsAnteprima
- Practicing MethodsAnteprima
- Struct ConstructorsAnteprima
- Practicing ConstructorsAnteprima
- EnumeratorsAnteprima
- Practicing EnumeratorAnteprima
In this section, we will learn what Object-Oriented Programming (OOP) is and how we can create programs that use the concept of OOP. We will also practice this concept with many hands-on tasks that are fun to solve.
In this section, we delve deeper into the essentials of Object-Oriented Programming (OOP). We explore advanced topics to enhance your understanding and proficiency in OOP. From managing object lifecycles through destructors to refining class structures with access modifiers, and harnessing the power of derived classes and method overloading, this section equips you with the knowledge and practical skills needed to design robust and flexible object-oriented systems.
This will be a detailed chapter in which we will dive deep into the main principles of Object-Oriented Programming (OOP). We will also look at many practical applications and hands-on examples of these principles to understand them better. In this section we will revise some of the concepts from the previous section in a bit more detail and combine the concepts together to understand it more thoroughly.
Module 3 / Introduzione a SQL
In questa sezione, impareremo come utilizzare l'istruzione SQL SELECT per ottenere una singola colonna di tabella, più colonne di tabella e tutte le colonne di tabella. Scopriremo anche come restituire valori unici.
- Recupero di Colonne IndividualiAnteprima
- Recupero di Più ColonneAnteprima
- Recupero di Tutte le ColonneAnteprima
- Recupero di Righe DistincteAnteprima
- Limitare i RisultatiAnteprima
- Sfida: Trova la Popolazione dei PaesiAnteprima
- Sfida: Trova Tutti i PaesiAnteprima
- Sfida: Trova Tutti i Paesi con i Loro IDsAnteprima
- Sfida: Trova le Capitali dei PaesiAnteprima
- Sfida: Trova le Regioni in Cui Si Trovano Tutti i PaesiAnteprima
In questa sezione, esploreremo come organizzare e dare priorità ai dati restituiti da una query utilizzando la clausola ORDER BY. Posizionata alla fine di un'istruzione SELECT, questa clausola ti consente di ordinare i tuoi risultati per una o più colonne, sia in ordine crescente che decrescente, permettendo un output di dati più significativo e facilmente interpretabile.
- Ordinamento Dei DatiAnteprima
- Sfida: Ordinamento della PopolazioneAnteprima
- Ordinamento per Più ColonneAnteprima
- Sfida: Query a Doppio OrdinamentoAnteprima
- Specificare la Direzione dell'OrdinamentoAnteprima
- Sfida: Ordina i Paesi per Regione e CapitaleAnteprima
- Sfida: Ordina le Capitali in Ordine DecrescenteAnteprima
- Sfida: Ordina i Paesi in Ordine CrescenteAnteprima
- Sfida: Trova i Paesi, i Loro ID e le Loro PopolazioniAnteprima
- Sfida: Trova Paesi, ID, Popolazioni, Regioni e OrdinaAnteprima
- Sfida: Trova Tutti i Continenti e Ordinali in Ordine CrescenteAnteprima
In questa sezione, impareremo come filtrare i dati restituiti utilizzando la clausola WHERE dell'istruzione SELECT. Impareremo come testare l'uguaglianza, la disuguaglianza, intervalli di valori più e meno significativi e valori NULL.
In questa sezione, esploreremo come affinare le condizioni di ricerca combinando le clausole WHERE con gli operatori AND e OR. Tratteremo anche come l'operatore NOT può essere utilizzato per escludere determinati risultati.
In questa sezione, impareremo cosa sono le funzioni di aggregazione SQL e come usarle per riassumere i dati delle tabelle.
Module 4 / SQL Intermedio
In questa sezione, imparerai come raggruppare e gestire i dati in modo efficace. Introdurremo l'operatore GROUP BY per raggruppare i dati. Inoltre, imparerai come filtrare i dati raggruppati utilizzando l'operatore HAVING.
- Clausola GROUP BYAnteprima
- Ordine delle IstruzioniAnteprima
- Sfida: Tempo Totale di Viaggio per Ogni Linea della MetropolitanaAnteprima
- Sfida del Voto Medio dello StudenteAnteprima
- Ricerca della Sfida per i Migliori Studenti di MatematicaAnteprima
- Clausola HavingAnteprima
- Diverse Funzioni di Aggregazione nella QueryAnteprima
- Filtraggio Più ComplessoAnteprima
Imparerai sulle sottoquery nidificate, come crearle e come usarle efficacemente.
Qui, imparerai come combinare più tabelle, permettendoti di lavorare con una tabella unificata e semplificare la creazione delle query.
- Unisci 2 TabelleAnteprima
- Sfida: Ottenere la Categoria in Base al Prezzo del ProdottoAnteprima
- Sfida: Ottenere il Prezzo Minimo per CategoriaAnteprima
- Sfida: Ottenere la Quantità di Prodotto per CategoriaAnteprima
- Join Left, Right e InnerAnteprima
- Sfida: Unione di TabelleAnteprima
- Sfida: Utilizzo di FULL JOINAnteprima
Impara i fondamenti del Linguaggio di Definizione dei Dati (DDL) e del Linguaggio di Manipolazione dei Dati (DML) in SQL, inclusi come creare, modificare e eliminare oggetti del database, nonché come inserire, aggiornare ed eliminare dati all'interno delle tabelle.
Module 5 / Introduction to .NET with C#
In this section we will learn about what is .NET, how to setup the development environment and how to start making some console apps. Apart from that we will also learn how to take input from the user in the console for making interactive applications.
- What is the .NET Platform exactly?Anteprima
- Creating a Console ApplicationAnteprima
- Taking input from the UserAnteprima
- Task - Building a Simple CalculatorAnteprima
- Dealing with Exceptions caused by User InputAnteprima
- Task - Improving the CalculatorAnteprima
- Reading FilesAnteprima
- Writing FilesAnteprima
- Task - File Based CalculatorAnteprima
In this section, we will be learning how to perform multiple tasks at once to improve the performance and responsiveness of applications. We will also briefly learn what Web Services and APIs are. This will give us an introduction to how the internet and websites work. We will also learn how to use APIs.
- What is Asynchronous Programming?Anteprima
- Implementing an Asynchronous MethodAnteprima
- Task - Asynchronously Reading FilesAnteprima
- Introduction to APIsAnteprima
- Making a GET RequestAnteprima
- Task - Using an APIAnteprima
- Handling Exceptions caused by HTTP RequestAnteprima
- Task - Exception Handling for API ResponseAnteprima
In this section we will learn what are databases, specifically what are SQL databases and how to create them. We will study their structure and will learn to perform some basic operations on the databases. This chapter will serve as an introduction to ADO.NET which is a .NET module used for interacting with databases.
- What is a Database?Anteprima
- Structure of a Relational DatabaseAnteprima
- Setting Up A MySQL ServerAnteprima
- Connecting to the MySQL ServerAnteprima
- Task - Writing Connection StringsAnteprima
- Executing CommandsAnteprima
- Task - Executing MySQL CommandsAnteprima
- MySqlCommand MethodsAnteprima
- Task - Connecting to a MySQL Database and Executing CommandsAnteprima
In this section, we'll cover the fundamental CRUD operations (Create, Read, Update, Delete) using SQL. We'll explore SQL syntax at a basic level and recap how to implement each SQL statement in C# code. While some parts may serve as a review from the previous section, this will provide a solid understanding of essential database concepts, enabling you to understand both the SQL and C# code and write it independently.
- Introduction to CRUD OperationsAnteprima
- Installing & Using MySQL WorkbenchAnteprima
- CREATE - Part IAnteprima
- Task - Using CREATEAnteprima
- CREATE - Part IIAnteprima
- Task - Using INSERTAnteprima
- ReadAnteprima
- Task - Using SELECTAnteprima
- UpdateAnteprima
- Task - Using UPDATEAnteprima
- Delete - Part IAnteprima
- Delete - Part IIAnteprima
- Task - Using DELETEAnteprima
In this chapter we will learn about additional functions or methods for making database management more efficient. For-example executing multiple SQL commands at once using Stored Procedures, and retrieving data in bulk from the SQL database using DataSet.
Module 6 / HTML Essentials
Get an introduction to the web and HTML, including the significance of tags, elements, and attributes. Learn about the basic structure of an HTML document and the brief history of the web.
Master the essentials of HTML markup, focusing on special text formatting and lists, understanding their significance in structuring content within an HTML document. Dive into the intricacies of HTML document structure while refining text markup techniques.
- HTML Document Structure ExplainedAnteprima
- Challenge: Structuring an HTML DocumentAnteprima
- Using Headings and Paragraphs in HTMLAnteprima
- Challenge: Mastering Text MarkupAnteprima
- Enhancing Text and Interactivity in HTMLAnteprima
- Challenge: Applying Special Text MarkupAnteprima
- Creating and Using Lists in HTMLAnteprima
- Challenge: Structuring Content with ListsAnteprima
Unlock the power of visual and auditory content in web development as you learn to seamlessly integrate images, video, and audio elements into HTML documents. Explore the nuances of incorporating various media formats.
Navigate the intricacies of data presentation and user interaction with comprehensive coverage of tables and forms in HTML, encompassing table structures, form creation, and input elements. Gain proficiency in implementing form input elements and leveraging attributes for enhanced functionality.
- Creating and Structuring HTML TablesAnteprima
- Challenge: Working with TablesAnteprima
- Building HTML FormsAnteprima
- Challenge: Building a Web FormAnteprima
- Using Form Inputs and Labels EffectivelyAnteprima
- Challenge: Applying Form Inputs and LabelsAnteprima
- HTML Input Attributes for Enhanced FunctionalityAnteprima
Elevate your HTML skills to the next level by delving into semantic HTML elements, empowering you to create well-structured and accessible web content. Embark on building your first website, applying newfound knowledge to bring your ideas to life.
Module 7 / Advanced C# with .NET
In this section, we will learn what MAUI is, and how to set up a .NET MAUI application. We will also look at the structure of an MAUI application, and in the end, we will learn how to add some basic elements to our UI. This section will prepare us for the rest of the course where we will be working with more practical concepts.
In this section we will learn about delegates, events and data binding. Using this knowledge we will learn how to make interesting interactive GUI applications.
In this section, we will learn what Threading is and how to use it to keep our applications responsive, and run smoothly while performing resource intensive tasks. We will see how to differs from other similar concepts on C# and what are good practices when implementing Threading in our application. There will also be some interesting tasks to help us in understand this concept on a deeper level.
In this section, we will learn how to make more robust methods, classes and other objects which can work multiple types of input data types, by first learning about Generics and how to implement generic classes, then we will move on to Reflection and how to use reflection for further improving the capabilities of our programs.
Requirements
- A computer with a browser - all browsers are supported.
- Your enthusiasm to enhance your tech skills.
- Everything else needed to start learning and practicing is already included in this course.
Over 200,000 5-star ratings and counting
Ruslan Kravchuk
La cosa principale è imparare e non arrendersi
Il materiale è buono, c'è tanto da imparare, tutto per migliorarsi, e la cosa principale è imparare ciò che desideri....
Matteo Comune
Grazie a loro sto imparando molto…
Grazie a loro sto imparando molto più rapidamente perché ti aiutano a comprendere tutto da zero. È il miglior sito web per chi non ha background in IT...
Yuliana Cadavid
ottimo corso per principianti
ottimo corso per principianti, mettono alla prova le tue conoscenze in ogni lezione...
Elpunzon
Sto apprezzando la mia esperienza su Codefinity…
Sto apprezzando la mia esperienza di apprendimento di Python con Codefinity. Il metodo di studio autodidatta è fantastico perché posso adattarlo al mio orario...
Alexandru Alexandru
È piacevole imparare da Codefinity
È piacevole imparare da Codefinity. È facile e offre buoni esempi di quanto appreso qui...
jacob Templet
Easy to follow along with and provides…
Facile da seguire e offre una sfida nella mia vita quotidiana. La sfida mi motiva a imparare giorno dopo giorno...
Elan
Codefinity è uno strumento di apprendimento completo…
Codefinity è uno strumento di apprendimento completo che ti aiuta a sviluppare le tue competenze come ingegnere del software o data scientist. Gli esercizi sono divertenti e un ottimo modo per affinare le tue abilità...
Thibault
Prima volta che impari a programmare
La prima volta che ho imparato a programmare e ci sono riuscito con Codefinity - Grazie...
Adrien Morel
Ben progettato per principianti assoluti
Ben progettato per principianti assoluti, con un progresso incrementale che mi dà fiducia....
_Gracy
è semplicemente perfettamente spiegato
È semplicemente perfettamente spiegato! Finora non ho incontrato alcuna difficoltà perché tutto è così ben organizzato....
Ruslan Kravchuk
La cosa principale è imparare e non arrendersi
Il materiale è buono, c'è tanto da imparare, tutto per migliorarsi, e la cosa principale è imparare ciò che desideri....
Matteo Comune
Grazie a loro sto imparando molto…
Grazie a loro sto imparando molto più rapidamente perché ti aiutano a comprendere tutto da zero. È il miglior sito web per chi non ha background in IT...
Yuliana Cadavid
ottimo corso per principianti
ottimo corso per principianti, mettono alla prova le tue conoscenze in ogni lezione...
Elpunzon
Sto apprezzando la mia esperienza su Codefinity…
Sto apprezzando la mia esperienza di apprendimento di Python con Codefinity. Il metodo di studio autodidatta è fantastico perché posso adattarlo al mio orario...
Alexandru Alexandru
È piacevole imparare da Codefinity
È piacevole imparare da Codefinity. È facile e offre buoni esempi di quanto appreso qui...
jacob Templet
Easy to follow along with and provides…
Facile da seguire e offre una sfida nella mia vita quotidiana. La sfida mi motiva a imparare giorno dopo giorno...
Elan
Codefinity è uno strumento di apprendimento completo…
Codefinity è uno strumento di apprendimento completo che ti aiuta a sviluppare le tue competenze come ingegnere del software o data scientist. Gli esercizi sono divertenti e un ottimo modo per affinare le tue abilità...
Thibault
Prima volta che impari a programmare
La prima volta che ho imparato a programmare e ci sono riuscito con Codefinity - Grazie...
Adrien Morel
Ben progettato per principianti assoluti
Ben progettato per principianti assoluti, con un progresso incrementale che mi dà fiducia....
_Gracy
è semplicemente perfettamente spiegato
È semplicemente perfettamente spiegato! Finora non ho incontrato alcuna difficoltà perché tutto è così ben organizzato....
Data Engineer
Certificato di Completamento
Mostra le abilità che hai acquisite recentemente. Te lo sei guadagnato
Discover more
Learning tracks
Solo per Ultimate
6 Corsi
169 Compiti
Solo per Ultimate
4 Corsi
115 Compiti
Solo per Ultimate
6 Corsi
101 Compiti
Solo per Ultimate
4 Corsi
143 Compiti
Solo per Ultimate
5 Corsi
119 Compiti
Solo per Ultimate
3 Corsi
38 Compiti
Solo per Ultimate
7 Corsi
376 Compiti
Solo per Ultimate
2 Corsi
1 Progetto
57 Compiti
Solo per Ultimate
7 Corsi
346 Compiti
Solo per Ultimate
6 Corsi
309 Compiti
Solo per Ultimate
5 Corsi
146 Compiti
Solo per Ultimate
5 Corsi
135 Compiti
Solo per Ultimate
3 Corsi
71 Compiti
Solo per Ultimate
6 Corsi
239 Compiti
Solo per Ultimate
5 Corsi
239 Compiti
Solo per Ultimate
4 Corsi
125 Compiti
Solo per Ultimate
3 Corsi
119 Compiti
Solo per Ultimate
3 Corsi
75 Compiti
Solo per Ultimate
4 Corsi
159 Compiti
Solo per Ultimate
4 Corsi
154 Compiti
Learning tracks
traccia
Python da Zero a Eroe
Principiante
4.7
(8348)
traccia
SQL da Zero a Eroe
Principiante
4.7
(2594)
traccia
Fondamenti di C++
Principiante
4.5
(484)
traccia
Sviluppo di Giochi con Unity
Principiante
4.7
(76)
traccia
Diventa uno Sviluppatore React
Intermedio
4.7
(67)
traccia
Fondamenti di Excel
Principiante
4.7
(304)
traccia
Fondamenti di Java
Principiante
4.7
(198)
traccia
Python Oltre l'Intermedio
Principiante
4.6
(66)
traccia
Sviluppo Web Full Stack
Principiante
4.7
(857)
traccia
Fondamenti Dello Sviluppo Frontend
Principiante
4.7
(829)
traccia
Padroneggiare la Visualizzazione dei Dati
Intermedio
4.7
(568)
traccia
Apprendimento Supervisionato delle Macchine
Intermedio
4.6
(125)
traccia
Padronanza di C++
Avanzato
4.8
(16)
traccia
Java Web
Avanzato
4.7
(1164)
traccia
Diventa un Ingegnere QA
Principiante
4.7
(722)
traccia
Produzione Video con Adobe
Principiante
5.0
(5)
traccia
Strumenti di Design UI/UX
Principiante
5.0
(4)
traccia
Competenze Essenziali per l'Ufficio
Principiante
4.8
(242)
traccia
Digital Marketing Essentials
Principiante
5.0
(3)
traccia
Complete Social Media Management
Principiante
5.0
(1)
Become a Development expert
Interactive exercises
Learning videos
AI-assistant on all courses
Workspaces for designing your own projects
Ready to get started?
ProBest intro offer | UltimateA complete experience to kickstart your career | |
---|---|---|
85+ Top-Rated courses | ||
Completion certificates | ||
AI-Assistant in all courses | ||
20+ hands-on Real-world projects | ||
Personalized study tracks | ||
Unlimited workspaces | ||
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity Teams