Skip to content

Instantly share code, notes, and snippets.

@chaliy
Created January 6, 2011 05:18
Show Gist options
  • Select an option

  • Save chaliy/767537 to your computer and use it in GitHub Desktop.

Select an option

Save chaliy/767537 to your computer and use it in GitHub Desktop.
public class SuperDTO
{
public string A {get; set; }
public string B {get; set; }
public string C {get; set; }
public int D {get; set; }
}
public class A{
public void M1(SuperDTO[] inp){}
public class M2Arg
{
public string A {get; set; }
public string B {get; set; }
public string C {get; set; }
public int D {get; set; }
}
public void M2(M2Arg[] inp){}
public void M3(Tuple<string, string, string, int>[] inp){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment