Explaination:
This design is just created based on my crude understanding of the business logics of the system. This is just only a demonstration. To make it more reasonable, need to understand the things in following aspects.
- For this system, what benefits can provide to clients or what problems it can resolve for clients, why they need it?
- How will clients use this system, what functions it will provide?
- How it gets the data clients need? any processing logic needs to be applied on the data?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Main() | |
{ | |
var myValues = new MyValues("abc,a,def,a,def,abcd,dd"); | |
foreach (var item in myValues) | |
{ | |
System.Console.WriteLine(item); | |
} | |
System.Console.WriteLine("another test:"); | |