Click here to Skip to main content
15,890,557 members
Home / Discussions / C#
   

C#

 
GeneralRe: Keeping a Linked List generic untill the end, is it possible? [modified] Pin
Keith Barrow17-Oct-10 22:47
professionalKeith Barrow17-Oct-10 22:47 
GeneralRe: Keeping a Linked List generic untill the end, is it possible? Pin
Ian Durward17-Oct-10 23:07
Ian Durward17-Oct-10 23:07 
GeneralRe: Keeping a Linked List generic untill the end, is it possible? Pin
Keith Barrow17-Oct-10 23:13
professionalKeith Barrow17-Oct-10 23:13 
GeneralRe: Keeping a Linked List generic untill the end, is it possible? [modified] Pin
Ian Durward18-Oct-10 0:13
Ian Durward18-Oct-10 0:13 
GeneralRe: Keeping a Linked List generic untill the end, is it possible? Pin
Keith Barrow18-Oct-10 5:27
professionalKeith Barrow18-Oct-10 5:27 
GeneralRe: Keeping a Linked List generic untill the end, is it possible? Pin
_Erik_19-Oct-10 4:28
_Erik_19-Oct-10 4:28 
AnswerRe: Keeping a Linked List generic untill the end, is it possible? Pin
Keith Barrow17-Oct-10 22:42
professionalKeith Barrow17-Oct-10 22:42 
GeneralRe: Keeping a Linked List generic untill the end, is it possible? Pin
Ian Durward17-Oct-10 22:51
Ian Durward17-Oct-10 22:51 
Yes but how do I keep it generic untill the last minute?

I have tried

        public Access[] findAll()<br />
        {<br />
            string sql = "SELECT * FROM access";<br />
<br />
            LinkedList<T> list = executeSQL(sql); // in superclass<br />
<br />
            Access[] aArray = new Access[list.Count];<br />
            list.CopyTo(aArray, 0);<br />
<br />
            return aArray;<br />
        }<br />
<br />
        public LinkedList<T> executeSQL( string sql, string [] array )<br />
		{<br />
            LinkedList<T> list = null;<br />
<br />
            try{<br />
            <br />
            ...<br />
<br />
            return list;<br />
        }


but that does not work
QuestionProblem running a Web Service in a Window Service Pin
Varun Sareen17-Oct-10 19:49
Varun Sareen17-Oct-10 19:49 
AnswerRe: Problem running a Web Service in a Window Service Pin
Abhinav S17-Oct-10 20:28
Abhinav S17-Oct-10 20:28 
GeneralRe: Problem running a Web Service in a Window Service Pin
Varun Sareen17-Oct-10 20:49
Varun Sareen17-Oct-10 20:49 
GeneralRe: Problem running a Web Service in a Window Service Pin
Abhinav S17-Oct-10 22:05
Abhinav S17-Oct-10 22:05 
GeneralRe: Problem running a Web Service in a Window Service Pin
Varun Sareen18-Oct-10 19:00
Varun Sareen18-Oct-10 19:00 
Questionhow to get x,y coordinates when drawing rectangle on the picture box Pin
ash_ng17-Oct-10 19:37
ash_ng17-Oct-10 19:37 
AnswerRe: how to get x,y coordinates when drawing rectangle on the picture box Pin
Khaniya17-Oct-10 20:33
professionalKhaniya17-Oct-10 20:33 
AnswerRe: how to get x,y coordinates when drawing rectangle on the picture box Pin
johannesnestler19-Oct-10 4:14
johannesnestler19-Oct-10 4:14 
QuestionSQL Backing up with SMO & C# ? Pin
Mohammad Dayyan17-Oct-10 4:49
Mohammad Dayyan17-Oct-10 4:49 
AnswerRe: SQL Backing up with SMO & C# ? Pin
Ravi Bhavnani17-Oct-10 6:01
professionalRavi Bhavnani17-Oct-10 6:01 
GeneralRe: SQL Backing up with SMO & C# ? Pin
Mohammad Dayyan7-Nov-10 2:20
Mohammad Dayyan7-Nov-10 2:20 
AnswerRe: SQL Backing up with SMO & C# ? Pin
Luc Pattyn17-Oct-10 6:38
sitebuilderLuc Pattyn17-Oct-10 6:38 
QuestionA good way to store this information? Pin
stephen.darling16-Oct-10 12:33
stephen.darling16-Oct-10 12:33 
AnswerRe: A good way to store this information? Pin
Mycroft Holmes16-Oct-10 12:41
professionalMycroft Holmes16-Oct-10 12:41 
GeneralRe: A good way to store this information? Pin
OriginalGriff16-Oct-10 22:07
mveOriginalGriff16-Oct-10 22:07 
GeneralRe: A good way to store this information? Pin
PIEBALDconsult17-Oct-10 13:27
mvePIEBALDconsult17-Oct-10 13:27 
AnswerRe: A good way to store this information? PinPopular
Luc Pattyn16-Oct-10 13:24
sitebuilderLuc Pattyn16-Oct-10 13:24 

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.