Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようにフィールドメンバーを作成します。
var fieldMember = new CodeMemberField("int", "Test");
フィールド タイプが予約済みの "int" であるため、C# キーワードで生成されたコードは次のようになります。
@int Test;
これはコンパイルされません。
どちらかを使ってみてください
var fieldMember = new CodeMemberField("System.Int32", "Test");
または
var fieldMember = new CodeMemberField(typeof(int), "Test");