Skip to content

Instantly share code, notes, and snippets.

View bholmes's full-sized avatar

Bill Holmes bholmes

View GitHub Profile
class Program
{
private delegate Nullable<int> Foo();
private Nullable<int> Bar()
{
return 0;
}
void TestMethod ()
using System;
public interface IPublisher<out TData>
{
event Action<TData> OnPublish;
}
public interface TestItf1<TT>
{
void TestMethod1(IPublisher<TT> publisher, StackFrame[] expectedFrames)