C# Equivalent for C++ Macros and using Auto<> Properties

后端 未结 7 1804
灰色年华
灰色年华 2021-02-20 16:35

I have some auto-instantiation code which I would like to apply to about 15 properties in a fairly big class. The code is similar to the following but the type is differ

7条回答
  •  没有蜡笔的小新
    2021-02-20 16:49

    You could use the much overlooked T4 (Text Template Transformation Toolkit) to generate the code. It is included with Visual Studio 2008.

    There was a 2009-06 .NET Rocks episode about it: "Peter Vogel uses Code Generation".

提交回复
热议问题