public class SoftwareEngineer
{
public string Name { get; }
public AboutMe AboutMe { get; }
public IEnumerable<Language> Languages { get; }
public FunFact FunFact { get; }
public SoftwareEngineer(string name, AboutMe aboutMe, IEnumerable<Language> languages, FunFact funFact)
{
Name = name;
AboutMe = aboutMe;
Languages = languages;
FunFact = funFact;
}
}
var ricardo = new SoftwareEngineer(
name: "Ricardo Tondello",
aboutMe: new AboutMe("I'm currently working at https://www.nmbrs.com as a Software Engineer in Amsterdam π³π±"),
languages: new[] { "Portuguese π§π·", "English π¬π§", "Italian π€" },
funFact: throw new BodyException("Right arm not found!"));
- Netherlands
-
05:29
(UTC +01:00) - https://www.linkedin.com/in/ricardotondello/
Pinned Loading
-
AnotherRedisDesktopManager
AnotherRedisDesktopManager PublicForked from qishibo/AnotherRedisDesktopManager
πππA faster, better and more stable redis desktop manager, compatible with Linux, windows, mac. What's more, it won't crash when loading a large number of keys.
JavaScript 1
-
Functional.Toolkit.OptionType
Functional.Toolkit.OptionType PublicFunctional.Toolkit.OptionType is a lightweight library that provides an implementation of the Option type in C#. The Option type is a functional programming concept that represents a value that mayβ¦
C# 2
-
FunctionalStringExtensions
FunctionalStringExtensions PublicThese extensions are designed to make common string manipulation tasks more convenient and expressive. Whether you're dealing with default values, asynchronous operations, or executing actions baseβ¦
C# 2
-
Functional.DiscriminatedUnion
Functional.DiscriminatedUnion PublicFunctional.DiscriminatedUnion is a C# library that provides a lightweight implementation of discriminated unions, also known as tagged unions or sum types, for functional programming in C#.
C#
-
Functional.ResultType
Functional.ResultType PublicFunctional.ResultType is a C# library that provides a simple and lightweight Result type for handling functional programming concepts. It's designed to help you manage success and failure cases morβ¦
C#
If the problem persists, check the GitHub status page or contact support.