Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created May 27, 2014 19:31
Show Gist options
  • Save Fhernd/72ba087e1cae11513720 to your computer and use it in GitHub Desktop.
Save Fhernd/72ba087e1cae11513720 to your computer and use it in GitHub Desktop.
Crear un assembly en C#.
// ===++===
//
// OrtizOL
//
// ===--===
/*============================================================
//
// Clase: AssemblyEjemplo.cs
//
// Propósito: Crear un assembly.
//
============================================================*/
using System;
namespace Recetas.Cap03
{
public class ClaseEjemplo
{
public void Metodo()
{
Console.WriteLine("Invocación de `Metodo`...");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment