Solutions to https://projecteuler.net/ problems in C#
Each problem has one or more solutions.
Solution1 is my initial approach while other solutions are more elegant. When a hint or a solution is provided online source is given in solution's summary.
Each solution returns an Anser object with theese properties:
long Result: The actual solution to the problem
double TimeTaken: Time taken for the algorithm to run in ms
string ExtraInfo: Extra information related to the problem (e.g. digits of a number)