Hello,
I use the code below in one .cs file.
Scenario 1 :
- I type "mv" + space under the "POS1" comment
- The result is the string : mvcaction4
3. I type "mv" + space under the "POS2" comment
4.The result is the one expected a method return void
Scenario 2:
- Change GetPerson() to a void method.
2. I type "mv" + space under the "POS1" comment
4.The result is the one expected a method return void
5. I type "mv" + space under the "POS2" comment
6.The result is the one expected a method return void
C#using System.Collections.Generic;
namespace MyTesting
{
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
public class UsingPerson
{
List<Person> GetPerson2()
{
return null;
}
//POS1
List<Person> GetPerson()
{
return null;
}
//POS2
}
}
Hi Christian,
Thank you for a detailed description of the problem. I have reproduced this problem locally and we will fix it in our future builds.
I hope quickly it's very painful :)
Rest assured. Templates is one of our major features and we will look into this problem first.