Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/doguedogue/schoolcsharp

Ejercicio con C# POO
https://github.com/doguedogue/schoolcsharp

Last synced: 11 days ago
JSON representation

Ejercicio con C# POO

Awesome Lists containing this project

README

        

# C# (sharp) School 🎒

## OOP Object Oriented Programming (POO ProgramaciĂłn Orientada a Objetos)



| Characteristics | CaracterĂ­sticas | Characteristics | CaracterĂ­sticas |
|----|----|----|----|
Inheritance | Herencia | Static | estático
Polymorphism | Polimorfismo | Abstract | abstracto
Encapsulation | Encapsulamiento | Scope: Public, Private, Protected | Alcance: PĂşblico, privado, protegido
Overload | Sobrecarga | Collections: Array, List | Colecciones: Arreglos, listas
Classes | Clases | Methods, Attributes | MĂ©todos, atributos
Interfaces | Interfaces | Enums, constants (final) | instance of
Object/Instance | Objeto/Instancia | .Net core | Exits return
Types: int, Char, float, double, String, boolean | Tipos: entero, carácter, flotante, doble, cadena, booleano | Loops iterator, for, while, do | Others :: ... ;
Condition if then else switch | Groups { } [ ] | Assignment = | AsignaciĂłn
Operators + - * / ^ | operadores | Comparator == < > <= >= | Comparador
Build | Deploy | Run | Testing
Run 🚀 | Build ⚙️ | Create
``` dotnet run ``` | ``` dotnet build``` | ``` dotnet new console```
My curly braces formatting
`%USERNAME%\.omnisharp\omnisharp.json`
```
{
"FormattingOptions": {
"NewLinesForBracesInLambdaExpressionBody": false,
"NewLinesForBracesInAnonymousMethods": false,
"NewLinesForBracesInAnonymousTypes": false,
"NewLinesForBracesInControlBlocks": false,
"NewLinesForBracesInTypes": false,
"NewLinesForBracesInMethods": false,
"NewLinesForBracesInProperties": false,
"NewLinesForBracesInObjectCollectionArrayInitializers": false,
"NewLinesForBracesInAccessors": false,
"NewLineForElse": false,
"NewLineForCatch": false,
"NewLineForFinally": false
}
}
```