These rules are adopted from the AngularJS commit conventions.
This file contains 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 _; | |
public class EnumBinding<T> where T : struct, Enum | |
{ | |
private const bool IgnoreCase = true; | |
private const bool IgnoreInt = true; | |
private T value; | |
public static bool TryParse(string value, out EnumBinding<T> result) | |
{ |