У нас вы можете посмотреть бесплатно What is C# - Multi-Paradigm Programming Language или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
C# as a multi-paradigm programming language multi-paradigm: that in itself is a loaded word! (https://en.wikipedia.org/wiki/Program...) I’m going to have to use an analogy to help you understand: If you blind-fold 6-people and have each person touch a part of the elephant, each one will describe it differently. C# has the capability of solving problems using different paradigms. You can use it in so many ways that being a multi-paradigm programming language will always leave you with plenty of room to learn. That’s because each paradigm has a dense number of solutions to offer. Here’s a list of paradigms that C# is capable of: Concurrent - Every modern computer has multiple cores in their processor and those cores can process several tasks concurrently. C# treat concurrency as first-class. (https://en.wikipedia.org/wiki/Concurr...) Functional - Functional programming is at the heart of every language evolving from C & C++. C# threats the tree of function definitions as first-class citizens. (https://en.wikipedia.org/wiki/Functio...) Meta-Programming - There are different levels to meta-programming and C# meets all of them. (https://en.wikipedia.org/wiki/Metapro...) -- It can produce more code to reduce the amount of code you write. -- It can deal with dynamic types. -- It can accept other programs as a data types and treat them like a native to C#. Generic Programming - This approach was pioneered by ML Programming Language back in 1973 (https://en.wikipedia.org/wiki/ML_(pro..., which permits writing common functions or types on which they operate when used. When it comes to Generics in C#, it ROCKS! Generics are so cool. (https://en.wikipedia.org/wiki/Generic...) Object-Oriented Programming - There are libraries filled with books on programming based on objects. This is another paradigm that C# treats as a first class citizen. (https://en.wikipedia.org/wiki/Object-...) Reflection Programming - The ability to process, examine and modify its own structure and behavior. This is like looking at your reflection in the mirror and changing the color of your eyes. (https://en.wikipedia.org/wiki/Reflect...)