Where Can I write my codes in C#?

English:

Where Can I write my codes in C#?

Write a code is too much simple, you just must know the syntax of that language (how is its way to be written and structured).
Knowing the syntax and the basic about that programming language, you are able to write your code with any tool that you want to, even more a simple notepad application.
However, .Net supports a useful interface to code.
This interface is called "Visual Studio" by Microsoft.
Visual Studio is a powerful IDE (Integrated Development Environment) developers to write code in .Net languages.
This IDE has many tools for programming more comfortable.
You can create applications in Console, applications with graphics components like forms, DLLs, and more...!
Some advantages to programming within Visual Studio:

- Auto-indentation, making your code too much more readily.

- IntelliSense is a component that allows you write code with more agility, completing statements, warning about errors, suggesting improvements to make your code better, and too much more...

- Great tools for debugging.

- Allows you to code database applications and with a graphical interface using drag and drop tools (buttons, text box...)

- Interpolation within another .NET language.

- Has the .NET compiler installed to compiler your codes.

Português-BR:

Onde posso escrever meus códigos em C#?

Escrever um código é muito simples, você só precisa conhecer a sintaxe dessa linguagem (como é a sua maneira de ser escrita e estruturada).
Conhecendo a sintaxe e o básico sobre essa linguagem de programação, você pode escrever seu código com qualquer ferramenta que desejar, ainda mais com um simples aplicativo de bloco de notas.
No entanto, .Net suporta uma interface útil para codificar.
Essa interface é chamada "Visual Studio" pela Microsoft.
O Visual Studio é uma poderosa IDE (Integrated Development Environment) para escrever código em linguagens .Net.
Essa IDE possui muitas ferramentas para programar com mais conforto.
Você pode criar aplicativos no console, aplicativos com componentes gráficos como formulários, DLLs e muito mais ...!
Algumas vantagens da programação no Visual Studio:

- Auto-indentação, tornando seu código muito mais legível.

- O IntelliSense é um componente que permite escrever código com mais agilidade, concluindo instruções, alertando sobre erros, sugerindo melhorias para seu código e muito mais...

- Ótimas ferramentas para depuração.

- Permite codificar aplicativos de banco de dados e com uma interface gráfica usando ferramentas de arrastar e soltar (botões, caixa de texto ...)

- Interpolação dentro de outra linguagem .NET.

- Possui o compilador .NET instalado para compilar seus códigos.

Comentários

Postagens mais visitadas deste blog

Boolean type

Assignments Operators

Increment and decrement operations