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
/* | |
* Google OAuth 3-Legged for C# | |
* | |
* Author: Redth | |
* Date: June 1, 2011 | |
* | |
* This class if for Authenticating to Google via 3-Legged OAuth | |
* | |
* Example Use: | |
* |
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 abstract class Animal | |
{ | |
public abstract string Name { get; } | |
} | |
public abstract class AnimalFactory | |
{ | |
public abstract Animal Create (); | |
public abstract void Process (Animal animal); | |
} |
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
{ | |
"check": { | |
"toolVersion": "0.2.11", | |
"openjdk": { | |
"minimumVersion": "1.8.0-1" | |
}, | |
"xcode": { | |
"minimumVersion": "12.4" | |
}, | |
"vswin": { |