MCPcopy Create free account
hub / github.com/3rfaan/courses / DisplayMail

Function DisplayMail

C#/Methods/Program.cs:27–33  ·  view source on GitHub ↗
(string firstName, string lastName, string domain = "contoso.com")

Source from the content-addressed store, hash-verified

25}
26
27void DisplayMail(string firstName, string lastName, string domain = "contoso.com")
28{
29 string mail = firstName.Substring(0, 2) + lastName;
30
31 mail = mail.ToLower();
32 Console.WriteLine($"{mail}@{domain}");
33}

Callers 1

Program.csFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected