Created
January 2, 2018 05:36
-
-
Save KennethanCeyer/e952b31e00d03147d6f074f3aa5e54a4 to your computer and use it in GitHub Desktop.
parameter binding with direct pascal 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 TestD( | |
string A, | |
string B | |
) | |
{ | |
Debug.WriteLine($"a: {A}, b: {B}"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
request
output