@@ -554,14 +554,14 @@ public int Test1 {
554554}
555555" ,
556556 @"Public Class HasConflictingPropertyAndField
557- Private f_Test As Integer
557+ Private testField As Integer
558558
559559 Public Property Test As Integer
560560 Get
561- Return f_Test
561+ Return testField
562562 End Get
563563 Set(ByVal value As Integer)
564- f_Test = value
564+ testField = value
565565 End Set
566566 End Property
567567End Class
@@ -610,26 +610,26 @@ public int Test(int arg) {
610610}" ,
611611 @"Public Class HasConflictingMethodAndField
612612 Public Function HasConflictingParam(ByVal test As Integer) As Integer
613- f_TeSt = test
613+ teStField = test
614614 Return test
615615 End Function
616616
617- Private f_TeSt As Integer
617+ Private teStField As Integer
618618
619- Private Function m_Test () As Integer
619+ Private Function testMethod () As Integer
620620 Return 1
621621 End Function
622622
623623 Public Function Test() As Integer
624- Return m_Test ()
624+ Return testMethod ()
625625 End Function
626626
627- Private Function m_Test (ByVal arg As Integer) As Integer
627+ Private Function testMethod (ByVal arg As Integer) As Integer
628628 Return arg
629629 End Function
630630
631631 Public Function Test(ByVal arg As Integer) As Integer
632- Return m_Test (arg)
632+ Return testMethod (arg)
633633 End Function
634634End Class" ) ;
635635 }
@@ -653,18 +653,18 @@ public int Test {
653653}" ,
654654 @"Public Class HasConflictingPropertyAndField
655655 Public Function HasConflictingParam(ByVal test As Integer) As Integer
656- f_Test = test
656+ testField = test
657657 Return test
658658 End Function
659659
660- Private f_Test As Integer
660+ Private testField As Integer
661661
662662 Public Property Test As Integer
663663 Get
664- Return f_Test
664+ Return testField
665665 End Get
666666 Set(ByVal value As Integer)
667- f_Test = value
667+ testField = value
668668 End Set
669669 End Property
670670End Class" ) ;
@@ -685,14 +685,14 @@ public int HasConflictingParam(int test) {
685685 }
686686}" ,
687687 @"Public Class HasConflictingPropertyAndField
688- Private f_Test As Integer
688+ Private testField As Integer
689689
690690 Public Property Test As Integer
691691 Get
692- Return f_Test
692+ Return testField
693693 End Get
694694 Set(ByVal value As Integer)
695- f_Test = value
695+ testField = value
696696 End Set
697697 End Property
698698
@@ -727,22 +727,22 @@ public int Test {
727727}" ,
728728 @"Public Partial Class HasConflictingPropertyAndField
729729 Public Function HasConflictingParam(ByVal test As Integer) As Integer
730- Dim l_TEST As Integer = 0
731- f_Test = test + l_TEST
730+ Dim lTEST As Integer = 0
731+ testField = test + lTEST
732732 Return test
733733 End Function
734734End Class
735735
736736Public Partial Class HasConflictingPropertyAndField
737- Private f_Test As Integer
737+ Private testField As Integer
738738
739739 Public Property Test As Integer
740740 Get
741- Dim l_TEST As Integer = 0
742- Return f_Test + l_TEST
741+ Dim lTEST As Integer = 0
742+ Return testField + lTEST
743743 End Get
744744 Set(ByVal value As Integer)
745- f_Test = value
745+ testField = value
746746 End Set
747747 End Property
748748End Class" ) ;
@@ -1122,15 +1122,15 @@ class OwnerClass : INotifyPropertyChanged {
11221122@"Imports System.ComponentModel
11231123
11241124Friend Class TestClass
1125- Private f_Owner As OwnerClass
1125+ Private ownerField As OwnerClass
11261126
11271127 Public Property Owner As OwnerClass
11281128 Get
1129- Return f_Owner
1129+ Return ownerField
11301130 End Get
11311131 Set(ByVal value As OwnerClass)
1132- f_Owner = value
1133- AddHandler CType(f_Owner , INotifyPropertyChanged).PropertyChanged, AddressOf OnOwnerChanged
1132+ ownerField = value
1133+ AddHandler CType(ownerField , INotifyPropertyChanged).PropertyChanged, AddressOf OnOwnerChanged
11341134 End Set
11351135 End Property
11361136
0 commit comments