This is the example from the C# docs from Microsoft Found here.
The purpose of this example is to show how to overload operators for a class in C#.
Make sure your current directory in terminal is FractionOps. You can check this with the following command:
# windows
cd
# Mac or Linux
pwdAfter running the command, you should see a path similar to the following:
[Full path]/In-Class-Example-Operator-Overloading/FractionOps
To look at the file, open Program.cs in the FractionOps folder
To run the file, use the following command to see the output:
dotnet run