Current filter:
                                You should refresh the page.
                                We apologize for the inconvenience. Our ordering system and the support center may be offline for a few hours on Sunday, May 19 due to maintenance tasks.
                                0
                                  • E.g. let's consider this code:

                                    SourceTreeModificationRuleCollection rules = new SourceTreeModificationRuleCollection();
                                    rules.Add(new RenameLocalsNormalizationRule());

                                    Where method Add has single parameter of type ISourceTreeModificationRule.

                                    I think Declare Class can use this information to generate base type for newly created class.

                                    Currently Declare Class generates:

                                      public class RenameLocalsNormalizationRule
                                      {
                                        public RenameLocalsNormalizationRule()
                                        {
                                        }
                                      }

                                    But it can be smarter and generate this:

                                      public class RenameLocalsNormalizationRule : ISourceTreeModificationRule
                                      {
                                        public RenameLocalsNormalizationRule()
                                        {
                                        }
                                      }

                                You must  log in  or  register  to leave an answer

                                Is your intention to post an answer to your own question?

                                • If so, then proceed.
                                • If you simply wanted to post additional information, ask for further clarification, or to just say "Thanks!", please click Leave a Comment.
                                • If you wish to edit your original question, please use the Edit button in the Toolbox at the top right corner of that entry.