Click here to Skip to main content
15,895,084 members
Home / Discussions / C#
   

C#

 
AnswerRe: Generate from PDF images with iTextSharp? Pin
Yusuf26-Jan-11 6:47
Yusuf26-Jan-11 6:47 
GeneralRe: Generate from PDF images with iTextSharp? Pin
BoySetsFire26-Jan-11 8:29
BoySetsFire26-Jan-11 8:29 
GeneralRe: Generate from PDF images with iTextSharp? Pin
Yusuf26-Jan-11 8:50
Yusuf26-Jan-11 8:50 
QuestionHaving trouble with network account removal on local machine Pin
turbosupramk326-Jan-11 5:11
turbosupramk326-Jan-11 5:11 
QuestionReturn List<> frrom WebMethod Pin
huge_superman26-Jan-11 3:45
huge_superman26-Jan-11 3:45 
AnswerRe: Return List frrom WebMethod Pin
TheGreatAndPowerfulOz26-Jan-11 7:51
TheGreatAndPowerfulOz26-Jan-11 7:51 
GeneralRe: Return List frrom WebMethod Pin
huge_superman26-Jan-11 9:46
huge_superman26-Jan-11 9:46 
GeneralRe: Return List frrom WebMethod Pin
TheGreatAndPowerfulOz26-Jan-11 10:04
TheGreatAndPowerfulOz26-Jan-11 10:04 
somehow you're using an ADUsers class from two different namespaces. C# will see these as two different types (as indeed they are) even if they are identical in definition.

Make sure the declaration of
List<ADUsers> list

is using the same namespace as the one from
ws.GetUserList()


see your using statements for a clue.

Or try
List<WindowsFormApplication1.myService.ADUsers> list = ws.GetUserList().ToList();

do you understand?
"If your actions inspire others to dream more, learn more, do more and become more, you are a leader." - John Quincy Adams

GeneralRe: Return List frrom WebMethod Pin
Pete O'Hanlon26-Jan-11 10:04
mvePete O'Hanlon26-Jan-11 10:04 
QuestionGet assembly name that called class library Pin
Chesnokov Yuriy26-Jan-11 1:23
professionalChesnokov Yuriy26-Jan-11 1:23 
AnswerRe: Get assembly name that called class library Pin
Pete O'Hanlon26-Jan-11 1:31
mvePete O'Hanlon26-Jan-11 1:31 
GeneralRe: Get assembly name that called class library Pin
Chesnokov Yuriy26-Jan-11 1:36
professionalChesnokov Yuriy26-Jan-11 1:36 
GeneralRe: Get assembly name that called class library Pin
Henry Minute26-Jan-11 2:07
Henry Minute26-Jan-11 2:07 
AnswerRe: Get assembly name that called class library Pin
Chesnokov Yuriy26-Jan-11 2:25
professionalChesnokov Yuriy26-Jan-11 2:25 
QuestionMulti-language installer in Visual Studio Deployment and Setup project Pin
linuxfedora25-Jan-11 23:23
linuxfedora25-Jan-11 23:23 
AnswerRe: Multi-language installer in Visual Studio Deployment and Setup project Pin
Pete O'Hanlon26-Jan-11 1:11
mvePete O'Hanlon26-Jan-11 1:11 
QuestionExcel Cell Copy - Update Formulas Pin
gmhanna25-Jan-11 16:35
gmhanna25-Jan-11 16:35 
AnswerRe: Excel Cell Copy - Update Formulas Pin
Dan Mos25-Jan-11 22:08
Dan Mos25-Jan-11 22:08 
QuestionLINQ and Multithreading : insert not work [modified] Pin
NoName_ark25-Jan-11 8:31
NoName_ark25-Jan-11 8:31 
AnswerRe: LINQ and Multithreading : insert not work Pin
Luc Pattyn25-Jan-11 10:24
sitebuilderLuc Pattyn25-Jan-11 10:24 
GeneralRe: LINQ and Multithreading : insert not work Pin
NoName_ark25-Jan-11 11:09
NoName_ark25-Jan-11 11:09 
AnswerRe: LINQ and Multithreading : insert not work Pin
Luc Pattyn25-Jan-11 11:22
sitebuilderLuc Pattyn25-Jan-11 11:22 
GeneralRe: LINQ and Multithreading : insert not work Pin
NoName_ark25-Jan-11 11:48
NoName_ark25-Jan-11 11:48 
AnswerRe: LINQ and Multithreading : insert not work Pin
NoName_ark25-Jan-11 12:28
NoName_ark25-Jan-11 12:28 
GeneralRe: LINQ and Multithreading : insert not work Pin
Pete O'Hanlon26-Jan-11 1:09
mvePete O'Hanlon26-Jan-11 1:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.