どちらも Web ページでは視覚的に似ていますが、それぞれの HTML はかなり異なります。
<input id="TEST" name="TEST" type="text" value="this one's filled in, but editor isn't">
<input class="text-box single-line" id="TEST" name="TEST" type="text" value="">
ドキュメントはReturns an HTML input element for each property in the object that is represented by the expression.
Html.Editor について述べています
Html.TextBoxは言うがReturns a text input element by using the specified HTML helper and the name of the form field.
これは、モデルの文字列名を に渡すHtml.Editor
と、そのプロパティごとにテキスト入力が作成Html.TextBox
されるということですか?