• Rakesh Nadipineni
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
public class ContactExtcontroller {
public List<Contact> conlist{set;get;}

    public ContactExtcontroller(ApexPages.StandardSetController controller) {
    
conlist=[select id,lastname,firstname,phone,email from Contact];
    }

}
Here  I am getting error called"ContactExtcontroller Compile Error: Illegal assignment from List<Contact> to List<Contact> at line 6 column 1" 
Please help me anyone