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

Highlights

  • Pro
Block or Report

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. Challenges Challenges Public

    This repository contains my solutions to LeetCode problems implemented. Each solution includes the problem description, the code solution.

    C#

  3. CommitsGuideline CommitsGuideline Public

  4. GitHub-Branching-Strategies-Handbook GitHub-Branching-Strategies-Handbook Public

    Este repositório oferece uma visão abrangente das estratégias de branching no GitHub