This question is locked. New answers and comments are not allowed.
Hello,
I don't know if JustCode permits to define some custom login to perform on method/properties... since I've started using Catel Framework I was wonderin if It's possible to have when I've an auto property defined as
public bool IsActive { get; set; }to be refactored as
public string IsActive { get { return GetValue<string>(IsActiveProperty); } set { SetValue(IsActiveProperty, value); } } public static readonly PropertyData NameProperty = RegisterProperty("IsActive", typeof(bool));with the justcode suggestion Fix-> Convert the property with backing fields (adding a menu voice)
Is this possible? (I mean not just this code but something defined custom)
Thanks