Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created December 5, 2013 03:24
Show Gist options
  • Save Fhernd/7799652 to your computer and use it in GitHub Desktop.
Save Fhernd/7799652 to your computer and use it in GitHub Desktop.
Demostración general del uso de la construcción partial en C#.
partial class A
{
int numero = 0;
void MetodoA() { }
partial void MetodoC();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment