Posted on: 7/15/2014 3:19:53 AM | Views : 428

public class Lookup : ILookup { Constructor public Lookup(string strValueMember, string strDisplayMember) { // } public Lookup(string strName, string strTagName, bool blnIsSelected, string strValueMember, string strDisplayMember) { // } } But when i want to call this class i am unable to create an instance 
Lookup test=new Lookup(string str,string str1) Getting an error like invalid expression term string.

Go to the complete details ...