Templates

At the moment there is only this

#FILENAME#

This variable is replaced from the template text in the created file text with the exact name of the created file

#FILENAME#UPPER#

This variable replaces the text of the template in the text of the created file with the name of the created file converted to uppercase.

#FILENAME#LOWER#

This variable replaces the template text in the text of the created file with the name of the created file converted to lowercase

Example

// Exammple C#
using System;

public class #FILENAME# {
    public static void Main(string[] args){
        // Your Content
    }
}

Last updated

Was this helpful?