Does the code snippet support the setting of dynamic parameters?
For example, I want to insert a constructor.
In C# usually enter 'ctor', and then press Tab.
public class Class1
{
public Class1()
{
}
}
But the result I got is:
public class Class1
{
public DefaultClassName()
{
}
}
When inserting the fragment, I have no chance to set the value of DefaultClassName, it will only use the default value in the snippet file.
What should I do to achieve the desired effect?
[Modified 4 years ago]