What are the differences and similarities between .NET languages?

I am trying to understand how much overlaps between different languages โ€‹โ€‹of the .NET Framework and what are the real differences. Is there an overlap of libraries / methods / functions ...? If I ask a question, say VB.NET answers and answers in C #, what can I take from C # -relevant information and what differences / incompatibilities should I look for?

+3
source share
5 answers

Here is a list of differences that claim to be complete here . And wikipedia has a page comparing them.

+3
source

: , , Visual Basic. . VB.Net #.Net-Features .

: . .Net-, .

0

C # and VB are very close semantically identical with fairly minor non-syntactic differences. F #, Powershell, Ruby, and Python are pretty different. F # is an interesting case: basically, every C # function maps to something in F # (sometimes wisely), but F # has its own functions, such as algebraic data types - they display CLR constructs, but I would classify them as "semantic sugar" and not "syntactic sugar"

0
source

Source: https://habr.com/ru/post/1731281/


All Articles