Skip to content

Instantly share code, notes, and snippets.

@fengyj
fengyj / prospect-system-design.md
Last active February 6, 2024 15:41
Prospect System Design

Prospect System Design

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?
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:");