Foro Wanako1
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Foro Wanako1

Programas Gratuitos, Desatendidos y Mucho más!!!
 
PortalPortal  ÍndiceÍndice  BuscarBuscar  Últimas imágenesÚltimas imágenes  ConectarseConectarse  RegistrarseRegistrarse  
Buscar
 
 

Resultados por:
 
Rechercher Búsqueda avanzada
Los posteadores más activos del mes
tano1221
C# Advanced Topics - The  Next Logical Step Vote_lcapC# Advanced Topics - The  Next Logical Step Voting_barC# Advanced Topics - The  Next Logical Step Vote_rcap 
ПΣӨƧӨFƬ
C# Advanced Topics - The  Next Logical Step Vote_lcapC# Advanced Topics - The  Next Logical Step Voting_barC# Advanced Topics - The  Next Logical Step Vote_rcap 
ℛeℙ@¢ᴋ€r
C# Advanced Topics - The  Next Logical Step Vote_lcapC# Advanced Topics - The  Next Logical Step Voting_barC# Advanced Topics - The  Next Logical Step Vote_rcap 
大†Shinegumi†大
C# Advanced Topics - The  Next Logical Step Vote_lcapC# Advanced Topics - The  Next Logical Step Voting_barC# Advanced Topics - The  Next Logical Step Vote_rcap 
missyou123
C# Advanced Topics - The  Next Logical Step Vote_lcapC# Advanced Topics - The  Next Logical Step Voting_barC# Advanced Topics - The  Next Logical Step Vote_rcap 
Engh3
C# Advanced Topics - The  Next Logical Step Vote_lcapC# Advanced Topics - The  Next Logical Step Voting_barC# Advanced Topics - The  Next Logical Step Vote_rcap 
ronaldinho424
C# Advanced Topics - The  Next Logical Step Vote_lcapC# Advanced Topics - The  Next Logical Step Voting_barC# Advanced Topics - The  Next Logical Step Vote_rcap 
Julio 2024
LunMarMiérJueVieSábDom
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarioCalendario
Últimos temas
» Cockos REAPER 7.18 (x86/x64)
C# Advanced Topics - The  Next Logical Step EmptyAyer a las 5:22 pm por ПΣӨƧӨFƬ

» OpenCloner Ripper 2024 7.20.131 (x64) Multilingual
C# Advanced Topics - The  Next Logical Step EmptyAyer a las 1:30 pm por ronaldinho424

» illustrate TuneFUSION R2024-06-28 Retail
C# Advanced Topics - The  Next Logical Step EmptyAyer a las 1:26 pm por ronaldinho424

» R-Studio 9.4 Build 191332 Technician |Network Multilingual
C# Advanced Topics - The  Next Logical Step EmptyAyer a las 1:22 pm por ronaldinho424

» AOMEI Partition Assistant 10.4.1 Multilingual+ WinPE
C# Advanced Topics - The  Next Logical Step EmptyAyer a las 1:18 pm por ronaldinho424

» Irix HDR Pro / Classic Pro 2.3.28
C# Advanced Topics - The  Next Logical Step EmptyAyer a las 4:27 am por missyou123

» Ashampoo AntiSpy Pro 1.6.0 Multilingual
C# Advanced Topics - The  Next Logical Step EmptyVie Jul 05, 2024 7:58 pm por 大†Shinegumi†大

» AnyMP4 Video Converter Ultimate 8.5.58 (x64) Multilingual
C# Advanced Topics - The  Next Logical Step EmptyVie Jul 05, 2024 7:51 pm por 大†Shinegumi†大

» ARES Commander 2025.1 Build 25.1.1.2142 (x64)
C# Advanced Topics - The  Next Logical Step EmptyVie Jul 05, 2024 7:43 pm por 大†Shinegumi†大

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 C# Advanced Topics - The Next Logical Step

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
Invitado
Invitado



C# Advanced Topics - The  Next Logical Step Empty
MensajeTema: C# Advanced Topics - The Next Logical Step   C# Advanced Topics - The  Next Logical Step EmptyJue Oct 22, 2020 4:21 am

C# Advanced Topics - The  Next Logical Step B68cab113450388db880d73adb60493a

C# Advanced Topics - The Next Logical Step
.MP4, AVC, 1280x720, 30 fps | English, AAC, 2 Ch | 3h 14m | 447 MB
Instructor: Tod Vachev

Learn advanced topics of the C# language like LINQ, Lambda, Extension Methods, Generics, Delegates, Events and more!

What you'll learn

You will be able to read and create LINQ Queries
You will understand what is a Lambda Expression and use it in various scenarios
You will be able to apply LINQ Queries with Lambda Operators
You will be able to Extend base types and custom objects with Extension Methods
Understand and Work with Generic Methods and Classes
Understand and Apply Delegates in Real-World Scenarios
Work with Built in Delegates - Func and Action
More Complex Delegates with Lambda Expressions/Anonymous Methods
You will be able to create Events to decouple Code
The Anatomy of Events
Passing Additional Information through Events
Asynchronous Programing with Asynchronous Methods

Requirements

C# Basics Knowledge - Ifs, Loops, Methods
C# OOP Knowledge is Necessary for Some of The Topics
Visual Studio Installed on your Computer
At least a little experience with Visual Studio (creating projects, opening projects, etc)

Description

The course will lay out the founding ideas of some of the more advanced C# topics for you in a way that makes them easier to understand.

The course is aimed at students that have some coding experience in general and with C# in particular, as well as some Object Oriented Programming experience. Not all topics require OOP knowledge, but it will be easier for you to understand those that do.

The topics that we are covering are:

LINQ - LINQ is kind of a language within the C# language, it has its own syntax, but its very easy and very enjoyable to use. LINQ is used to work on collections like arrays and lists, either to order them, or to extract information from them in many many many different ways. You will learn how apply LINQ filters on base type collections like integers and strings aswell as on collections of custom types that you have created.
Lambda Expressions with LINQ methods - you will finally learn what a Lambda Expression is and how to apply it, in particular we will use it to perform LINQ operations with even less code, and later we will use it with Delegates and Events
Extension Methods - this is one of the coolest features of C#, they allow you to extend built in types and classes that you have no access to. For example the int[] has no built in method for sorting or reversing, we will learn how to do this!
Generic Methods and Classes - this is where things start to get tricky and a little bit complicated, but you should not be scared as I have prepared a couple of well explained examples that will answer all of the questionmarks in your head about Generics. Spoiler alert: we will create our very own List class! Smile
Delegates - the simplest way in which a delegate can be described is, methods as variables, and that is just incredible. How? Well, you will understand soon enough!
Events - events are the next piece of the puzzle after Delegates, Events help us keep our code decoupled by creating non-coupled connections between classes
Asynchronous Programming - asynchronous programming is a complex and frustrating topic, here we will learn how to make code that takes a lot of time to execute run on the background, while our main code continues executing

There are tons and tons of tutorials on Youtube and other websites, so why would you have to pay for this course?

The answer is very simple, in this course you will get every single lecture systemized in such way, that it ensures smooth transition between the previous and the following topic. Guaranteeing great learning experience.

There are no stones left unturned, everything is explained in great detail (but not too much, that would be boring Smile )

The video lectures in the course are produced with the highest possible audio and video quality. No static noises to disturb you while you watch the videos, no blurry images, everything is crystal clear with crisp audio!

Who this course is for:

Anyone who wants to improve their C# skills with New, Interesting and Challenging topics
Anyone who just finished Object Oriented Programming Training and is looking for the next step

Download link:
Citación :
rapidgator_net:
https://rapidgator.net/file/ba9744b3bb7ccc43c1a3056c47cd0df1/9ki9c.C.Advanced.Topics..The.Next.Logical.Step.rar.html

nitroflare_com:
https://nitroflare.com/view/4B8087D8B16240A/9ki9c.C.Advanced.Topics..The.Next.Logical.Step.rar

alfafile_net:
http://alfafile.net/file/8xiGu/9ki9c.C.Advanced.Topics..The.Next.Logical.Step.rar

Links are Interchangeable - No Password - Single Extraction
Volver arriba Ir abajo
 

C# Advanced Topics - The Next Logical Step

Ver el tema anterior Ver el tema siguiente Volver arriba 
Página 1 de 1.

 Temas similares

-
» Logical Thinking Training
» Mastering Logical Fallacies
» Think Sharper With The Logical Thinking Process
» CSS Logical Properties Code Challenges
» Your Craft Business: Step By Step Guide To Make Money Online

Permisos de este foro:No puedes responder a temas en este foro.
Foro Wanako1 :: Programas o Aplicaciónes :: Ayuda, Tutoriales-