Reputation: 390
When I run a visual studio 2019 Solution for a Xamarin. Form app I get the error below
Severity Code Description Project File Line Suppression State Error CS0111 Type 'CreateAccountPage' already defines a member called 'InitializeComponent' with the same parameter types C:\Users%username%\source\repos\folder\folderr\obj\Debug\netstandard2.0\Views\CreateAccountPage.xaml.g.cs 1
How can I resolve this issue,
Upvotes: 0
Views: 247
Reputation: 390
Locate the obj folder in C:\Users%username%\source\repos\folder\folderr\obj and delete it, then in visual studio solution explorer right click the solution and select rebuild solution.
This resolved the error message.
Upvotes: 0