Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/doguedogue/schoolcsharp
- Owner: doguedogue
- Created: 2022-07-20T02:40:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-14T17:52:04.000Z (over 1 year ago)
- Last Synced: 2024-10-26T22:11:19.325Z (about 2 months ago)
- Language: C#
- Size: 97.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
}
```