这是一个错误吗?
如果我在视图中将模型指令定义为:
@model Tuple<string,string,string,string>
效果很好,我可以使用:@ Model.Item1,@ Model.Item2,@ Model.Item3和@ Model.Item4。
如果我将模型定义为:
@model Tuple<string,string,string,string,string>
the view returns error : CS1003: Syntax error, '>' expected