Skip to content

Instantly share code, notes, and snippets.

@sebmaldo
Created January 4, 2014 15:59
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 sebmaldo/8256775 to your computer and use it in GitHub Desktop.
Save sebmaldo/8256775 to your computer and use it in GitHub Desktop.
Interfaz del tipo de dato Bag
using System;
using System.Collections;
namespace Estudio_de_tipos_de_dato
{
interface IBag : IEnumerable
{
void add(Object item);
bool isEmpty();
int size();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment