@using Razor.Models
@model Razor.Models.Product[]
@{
    ViewBag.Title = "DemoArray";
}

@if (Model.Length > 0)
{
	<table>
		<thead><tr><th>Product</th><th>Price</th></tr></thead>
		<tbody>
			@foreach (Product p in Model)
			{
				<tr>
					<td>@p.Name</td>
					<td>@p.Price</td>
				</tr>
			}
		</tbody>
	</table>
}