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
namespace RockPaperAzure | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using RockPaperScissorsPro; | |
public class MyBot : IRockPaperScissorsBot | |
{ | |
private readonly List<Move> _opponentMoves; |
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 System; | |
using System.Collections.Generic; | |
using System.Dynamic; | |
public class TurboObject : DynamicObject | |
{ | |
private readonly object _defaultValue; | |
private readonly Dictionary<string, object> _vals = new Dictionary<string, object>(); | |
public TurboObject() |
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 System; | |
using System.Configuration; | |
using System.Data; | |
using System.Data.SqlClient; | |
using System.IO; | |
using System.Linq; | |
using System.Net.Configuration; | |
using System.Net.Mail; | |
using System.Text; | |
using System.Web; |
NewerOlder