Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私がやりたいことです:
string x = if(true) "String Val" else "No String Val";
それは可能ですか?
あなたが話していることは、条件文と呼ばれます:
string x = boolVal ? "String Val" : "No String Val";
bool が false の場合に文字列に値を持たないようにしたい場合は、次のように変更できます。
string x = boolVal ? "String Val" : null;
string x = condition ? trueValue : falseValue;
http://msdn.microsoft.com/en-us/library/ty67wk28.aspx
ペーパークリップを使用してファイルをアップロードするカスタムAPIを呼び出そうとしていますが、 https://github.com/jwagener/httmultipartyを使用してローカルで正常に動作していますが、APIを