Tag: Namespaces
-

C# Track, Exercism #43 Phone Number Analysis
Relevant link Github solution: exercism-solutions/phone-number-analysis Exercism #43: Phone Number Analysis Learning Goal Tuples Relevant Information Tuples in C# is a way of organizing data to hold 2 or more fields of any type. Each field is separated by commas within parentheses. Task 1 Your analysis should return 3 pieces of data Implement the (static) method PhoneNumber.Analyze() to…
-

C# Track, Exercism #42 Red vs. Blue: Darwin Style
Relevant link Github solution: exercism-solutions/red-vs-blue-darwin-style Exercism #42: C# exercises on Exercism Learning Goal Namespaces Relevant Information Namespaces are a way to group related code and to avoid name clashes and are generally present in all but the most trivial code base. Types enclosed in namespaces are referred to outside the scope of the namespace by prefixing the type…