Skip to content

Instantly share code, notes, and snippets.

@amaya382
Created April 14, 2015 11:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amaya382/ddb59ba3f368848f146b to your computer and use it in GitHub Desktop.
Save amaya382/ddb59ba3f368848f146b to your computer and use it in GitHub Desktop.
既に定義済みのものを後からInterfaceとして公開する, 型チェック付きのダックタイピングっぽい感覚…?
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