Created
April 14, 2015 11:08
-
-
Save amaya382/ddb59ba3f368848f146b to your computer and use it in GitHub Desktop.
既に定義済みのものを後からInterfaceとして公開する, 型チェック付きのダックタイピングっぽい感覚…?
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 class Named : Person, IImplName { } | |
public interface IImplName | |
{ | |
string Name { get; set; } | |
} | |
public class Person | |
{ | |
public string Name { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment