Equivalent PHP code in C#

I know that $_POST['m_orderid'] in C# the equivalent will be Request.Form["m_orderid"]. What means in C#:

$_POST['m_orderid'].'|success'; 

Upvotes: 0

Views: 256

Answers (1)

ekad
ekad

Reputation: 14624

Looks like you want to concatenate Request.Form["m_orderid"] with this string: |success, so the equivalent syntax in C# would be:

Request.Form["m_orderid"] + "|success";

Upvotes: 2

Related Questions