Question

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; }
        }
    }
#>
Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top