Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 27, 2015 01:09
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 Fhernd/7242857 to your computer and use it in GitHub Desktop.
Save Fhernd/7242857 to your computer and use it in GitHub Desktop.
Demostración de firma postpuesta en C#.
using System;
using System.Reflection;
[assembly:AssemblyVersion("1.1.0.1")]
[assembly:AssemblyKeyFileAttribute("MiLlave.snk")]
[assembly:AssemblyDelaySignAttribute(true)]
public class Usuario : Persona
{
private string nombreUsuario;
private string password;
public string NombreUsuario {set; get;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment