Skip to content
View GabrielMataDias's full-sized avatar
💭
Working
💭
Working

Highlights

  • Pro

Block or report GabrielMataDias

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
GabrielMataDias/README.md

Hi, I'm Gabriel Dias


using System;

namespace GabrielDias;

public static class Program
{
    static void Main(string[] args)
    {
        var me = new User(Name: "Gabriel Dias",
                          Username: "GabrielMataDias",
                          Location: "SP - Brazil",
                          LinkedIn: "linkedin.com/in/gabriel-mata-dias-1a9b18210/");

        Console.WriteLine(me);
    }
}

public readonly record struct User(string Name,
                                   string Username,
                                   string Location,
                                   string LinkedIn)
{
    public override string ToString()
        => $"Name: {Name}" +
           $"\nUsername: {Username}" +
           $"\nLocation: {Location}" +
           $"\nLinkedIn: {LinkedIn}";


}

Skills

Tools

GitHub Stats




Last Edited on: 06/06/2023

Popular repositories Loading

  1. GabrielMataDias GabrielMataDias Public

    Config files for my GitHub profile.

  2. SW-APP_CS-GEN SW-APP_CS-GEN Public

    Repositório para testar ideias de arquitetura de software usando .NET: - Padrões: DDD, CQRS, Event Sourcing, Clean Architecture - Experimentos com testes, modularização, performance e design

    C#