ASPMVCRazorファイル内で次のコードを試しています。
var topic = ViewData["TopicID"];
var mustBeReplaced = string.Empty;
var topicValue = Model.Topic;
var replaceResult = string.Empty;
if (topic.Contains(topicValue)) {
mustBeReplaced = "value=\"" + topicValue + "\"";
replaceResult = mustBeReplaced + " selected=\"selected\"";
topic = topic.Replace(mustBeReplaced, replaceResult);
}
しかし、エラーメッセージが表示されます。
オブジェクト'には'含む'の定義が含まれておらず、最適な拡張メソッドのオーバーロード