简体   繁体   中英

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'; 

看起来您想将Request.Form["m_orderid"]与以下字符串连接: |success ,因此C#中的等效语法为:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM