質問

Is it possible to define a new class within a t4 template?

I tried this but it gave me an error 'A template containing a class feature must end with a class feature'

<#+
    public class AppSettingDefinition
    {
        private string _dataType;
        public string DataType
        {
            get { return _dataType; }
            set { _dataType = value; }
        }
    }
#>
役に立ちましたか?

解決

Yes this is possible, the error I received was because I had text after class feature closing tag #>

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top