Skip to content

Instantly share code, notes, and snippets.

View carloscds's full-sized avatar
💭
Looking forward, everyday!

Carlos dos Santos carloscds

💭
Looking forward, everyday!
View GitHub Profile
var db = new Contexto();
var dados1 = new Dados(db);
var cat = dados1.GetNoTracking(1);
Console.WriteLine(cat.CategoryName);
static void Main(string[] args)
{
int[] num = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
foreach(int i in num)
{
Console.WriteLine(i);
}
}
static void Main(string[] args)
{
int[] num = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
foreach(int i in num[1..5])
{
Console.WriteLine(i);
}
}
static void Main(string[] args)
{
string str = "Exemplo em C# 8";
foreach(var s in str[^4..str.Length])
{
Console.Write(s);
}
Console.WriteLine("");
}
string str = "Exemplo em C# 8";
string palavra = str[^4..^0];
Console.WriteLine(palavra);
string final = str[^4..];
Console.WriteLine(final);
string inicio = str[..7];
Console.WriteLine(inicio);
public class Customers
{
public string CustomerID { get; set; }
public string CompanyName { get; set; }
public string City { get; set; }
}
public class AcessoBanco
{
SqlConnection _conexao;
public AcessoBanco(SqlConnection conexao)
{
_conexao = conexao;
}
}
public class AcessoBanco
{
IDbConnection _conexao;
public AcessoBanco(IDbConnection conexao)
{
_conexao = conexao;
}
}
using System;
public interface IServico
{
public void Executa();
}
public class ServicoCarro : IServico
{
public void Executa()
using System;
namespace BasicDI
{
public class ExecutaServico
{
private IServico _servico;
public ExecutaServico(IServico servico)
{
_servico = servico;