Skip to content

Instantly share code, notes, and snippets.

@KennethanCeyer
Created January 2, 2018 05:36
Show Gist options
  • Save KennethanCeyer/e952b31e00d03147d6f074f3aa5e54a4 to your computer and use it in GitHub Desktop.
Save KennethanCeyer/e952b31e00d03147d6f074f3aa5e54a4 to your computer and use it in GitHub Desktop.
parameter binding with direct pascal parameter
[HttpPost]
public void TestD(
string A,
string B
)
{
Debug.WriteLine($"a: {A}, b: {B}");
}
@KennethanCeyer
Copy link
Author

KennethanCeyer commented Jan 2, 2018

request

a: 1
b: 2

output

a: 1, b: 2

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