Skip to content

Instantly share code, notes, and snippets.

@Diullei
Created September 2, 2010 18:35
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 Diullei/562691 to your computer and use it in GitHub Desktop.
Save Diullei/562691 to your computer and use it in GitHub Desktop.
public class IUmaClasse<T>
{
public interface Usando<M>
{
T FazAlgo<M>();
}
}
public class ClassTeste : IUmaClasse<string>.Usando<bool>
{
public string FazAlgo<M>()
{
throw new NotImplementedException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment