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.
以下のテキストに示すように、文字列を作成したいと思います。
'bookNo':'" + bookNo + "'
私のコードは
String KeyValuePair = String.Format("'{0}':'\" + {1} + \"'", key,value);
しかし、上記のように正確な文字列を返すわけではありません。同じことを達成するために何ができますか?
これは単純にやっている
String key= "BookName"; String value = "BookValue"; String result = String.Format(@"'{0}:' ""+{1}+""", key, value);