Skip to content

Instantly share code, notes, and snippets.

@KennethanCeyer
Created January 2, 2018 05:39
Show Gist options
  • Save KennethanCeyer/e52a345861c6aed5332afbc7fd59c697 to your computer and use it in GitHub Desktop.
Save KennethanCeyer/e52a345861c6aed5332afbc7fd59c697 to your computer and use it in GitHub Desktop.
parameter binding with snake case parameter
[HttpPost]
public void TestE(
string AppleBanana,
string GrapeOrange
)
{
Debug.WriteLine($"a: {AppleBanana}, b: {GrapeOrange}");
}
@KennethanCeyer
Copy link
Author

KennethanCeyer commented Jan 2, 2018

request:

apple_banana: 1
grape_orange: 2

output:

a: , b: 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment