This file contains hidden or 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
| public void Euler1() { | |
| var i = 1; | |
| var sum = 0; | |
| while(i < 1000) | |
| { | |
| if(i % 3 == 0 || i % 5 == 0){ | |
| sum += i; | |
| } | |
| i++; |
This file contains hidden or 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
| using Castle.DynamicProxy; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Reflection; | |
| using Xunit; | |
| namespace AlexPlayingWithDynamicProxy | |
| { | |
| public enum EventType |