動くコード図鑑技術記事現場の渡り方キャリア論すべての記事About
C#

CarAndInspection

出典: ASP.NETでViewからControllerへ値を投げる方法!前提条件の確認! / CarAndInspection

CarAndInspection (csharp)#f3f711378e30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace CarInspection.Models.ViewModel
{
    public class CarAndInspectionViewModel
    {
        public Car Car { get; set; }
        public IEnumerable<InspectionLicense> inspectionLicenses { get; set; }
    }
}
▸ この snippet は実行結果未収録
▸ 実行結果は未収録です
  • id: #f3f711378e30
  • lines: 13
  • extracted: 2026-06-10

Source収録記事

この snippet は記事の「前提条件の確認! / CarAndInspection」セクションに登場する。コードの前後の文脈・ハマりどころの解説は記事本文で。

同じ記事から

6
図鑑トップ