私はブログを持っており、投稿タイトルの短いテキストを取得したいと考えています
例えば("This is original post title")
("This is orig....")
私のビュー ヘルパー:
@helper Render(Post post,
System.Web.Mvc.HtmlHelper html,
bool isAdmin, bool showComments)
{
<div class="postTitle"> <a href="@Href("~/Posts/Details/" + post.ID)">
<h1>@post.Title.Take(34)</h1></a><br /><br />
</div>
しかし、私System.Linq.Enumerable+<TakeIterator>d__3a``1[System.Char]
はタイトルの位置に着きます。