https://github.com/amgauna/c-sharp-2022
C# / C Sharp
https://github.com/amgauna/c-sharp-2022
csharp csharp-code csharp-script csharp7 csharp8
Last synced: 11 months ago
JSON representation
C# / C Sharp
- Host: GitHub
- URL: https://github.com/amgauna/c-sharp-2022
- Owner: amgauna
- Created: 2021-10-29T11:11:50.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-05T02:10:51.000Z (almost 4 years ago)
- Last Synced: 2025-01-26T17:45:04.916Z (about 1 year ago)
- Topics: csharp, csharp-code, csharp-script, csharp7, csharp8
- Language: C#
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C# / C Sharp
-----------------------------------------------
## Códigos C# (C Sharp) exemplos que estou estudando em livros
#### extensão de arquivo C Sharp = .cs
* Tutorial do C# = https://www.w3schools.com/cs/index.php
------------------------------------------------
* using Microsoft.AspNetCore;
* using Microsoft.AspNetCore.Hosting;
* using Microsoft.AspNetCore.Builder;
* using Microsoft.AspNetCore.TestHost;
* using Microsoft.AspNetCore.Http;
* using Microsoft.AspNetCore.Mvc;
* using Microsoft.AspNetCore.Mvc.ModelBinding;
-----------------------------------------------
* using Microsoft.Extensions.Configuration;
* using Microsoft.Extensions.DependencyInjection;
* using Microsoft.Extensions.Hosting;
* using Microsoft.Extensions.Logging;
* using Microsoft.OpenApi.Models;
------------------------------------------------
* using System;
* using System.IO;
* using System.Reflection;
* using System.Text;
* using System.Linq;
* using System.Collections.Generic;
* using System.Net.Http.Headers;
* using System.Threading.Tasks;
* using System.Net.Http;
-----------------------------------------------
* using DecimalMath;
* using FluentValidation;
* using FluentValidation.Results;
* using Refit;
* using Xunit;
* using Moq;
* using Json;
------------------------------------------------