Click here to Skip to main content
15,888,521 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionThreading/Paging in web services Pin
BobsAfro4-Jul-07 4:21
BobsAfro4-Jul-07 4:21 
QuestionCalling c++ unmanaged code from c++ Managed code Pin
AlamBakr3-Jul-07 12:25
AlamBakr3-Jul-07 12:25 
AnswerRe: Calling c++ unmanaged code from c++ Managed code Pin
Giorgi Dalakishvili3-Jul-07 20:38
mentorGiorgi Dalakishvili3-Jul-07 20:38 
QuestionUsercontrol can't handle generic collection Pin
Santiago Perez3-Jul-07 9:42
Santiago Perez3-Jul-07 9:42 
AnswerRe: Usercontrol can't handle generic collection Pin
Andy L 23-Jul-07 10:21
Andy L 23-Jul-07 10:21 
GeneralRe: Usercontrol can't handle generic collection Pin
Santiago Perez3-Jul-07 15:00
Santiago Perez3-Jul-07 15:00 
GeneralRe: Usercontrol can't handle generic collection Pin
Andy L 29-Jul-07 1:47
Andy L 29-Jul-07 1:47 
GeneralRe: Usercontrol can't handle generic collection Pin
Santiago Perez3-Jul-07 18:26
Santiago Perez3-Jul-07 18:26 
I think I found the solution: COnvertAll method of the COllectionBase Collections.

//Collection to list
SCG.List oColl = new SCG.List();
oColl.Add(new B("Michelle"));
oColl.Add(new B("Chris"));
oColl.Add(new B("kathy"));
SCG.List<iclass> ListA = oColl.ConvertAll<iclass>(new Converter<b,iclass>(ConverttoIClass));


public static iClass ConverttoIClass(iClass obj)
{
return (obj as iClass);
}

Regards,
Santiago "Saint" Perez
Florida's Turnpike Enterprise - Santiago.perez@dot.state.fl.us

GeneralRe: Usercontrol can't handle generic collection Pin
Santiago Perez9-Jul-07 3:50
Santiago Perez9-Jul-07 3:50 
QuestionSystem.byte[] returned for AD Query (asp.net/C# web app) Pin
Matt Martinez3-Jul-07 5:24
Matt Martinez3-Jul-07 5:24 
AnswerRe: System.byte[] returned for AD Query (asp.net/C# web app) Pin
Dave Kreskowiak3-Jul-07 5:47
mveDave Kreskowiak3-Jul-07 5:47 
GeneralRe: System.byte[] returned for AD Query (asp.net/C# web app) Pin
Matt Martinez3-Jul-07 6:35
Matt Martinez3-Jul-07 6:35 
GeneralRe: System.byte[] returned for AD Query (asp.net/C# web app) Pin
Dave Kreskowiak3-Jul-07 7:03
mveDave Kreskowiak3-Jul-07 7:03 
GeneralRe: System.byte[] returned for AD Query (asp.net/C# web app) Pin
Matt Martinez6-Jul-07 8:00
Matt Martinez6-Jul-07 8:00 
QuestionHow to search for hard coded string in VC++ code Pin
Neeranjan3-Jul-07 3:46
Neeranjan3-Jul-07 3:46 
AnswerRe: How to search for hard coded string in VC++ code Pin
Dave Kreskowiak3-Jul-07 5:21
mveDave Kreskowiak3-Jul-07 5:21 
AnswerRe: How to search for hard coded string in VC++ code Pin
l0kke3-Jul-07 5:41
l0kke3-Jul-07 5:41 
AnswerDO NOT CROSSPOST Pin
leckey3-Jul-07 8:19
leckey3-Jul-07 8:19 
AnswerThe rules Pin
leckey3-Jul-07 8:18
leckey3-Jul-07 8:18 
QuestionArray name is in a variable Pin
peacefulmember29-Jun-07 9:35
peacefulmember29-Jun-07 9:35 
AnswerRe: Array name is in a variable Pin
Dave Kreskowiak29-Jun-07 9:49
mveDave Kreskowiak29-Jun-07 9:49 
GeneralRe: Array name is in a variable Pin
peacefulmember2-Jul-07 4:21
peacefulmember2-Jul-07 4:21 
GeneralRe: Array name is in a variable Pin
Dave Kreskowiak2-Jul-07 12:38
mveDave Kreskowiak2-Jul-07 12:38 
QuestionCollection<> to KeyedCollection<T,K> Pin
Santiago Perez29-Jun-07 9:13
Santiago Perez29-Jun-07 9:13 
AnswerRe: Collection to KeyedCollection Pin
Robert Rohde1-Jul-07 2:21
Robert Rohde1-Jul-07 2:21 

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.