Skip to content

Instantly share code, notes, and snippets.

@ssabii
Last active May 11, 2020 07:49
Show Gist options
  • Save ssabii/9577ff078b965009cf0c6eaf239d2334 to your computer and use it in GitHub Desktop.
Save ssabii/9577ff078b965009cf0c6eaf239d2334 to your computer and use it in GitHub Desktop.
인터페이스 문법
interface IInterfaceName
{
int PropertyName
{
get;
set;
}
void MethodName(int num);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment