Created
January 6, 2011 05:18
-
-
Save chaliy/767537 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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