Created
January 2, 2018 05:39
-
-
Save KennethanCeyer/e52a345861c6aed5332afbc7fd59c697 to your computer and use it in GitHub Desktop.
parameter binding with snake case parameter
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
[HttpPost] | |
public void TestE( | |
string AppleBanana, | |
string GrapeOrange | |
) | |
{ | |
Debug.WriteLine($"a: {AppleBanana}, b: {GrapeOrange}"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
request:
output: