Click here to Skip to main content
15,912,504 members
Home / Discussions / C#
   

C#

 
GeneralRe: Control Ip Camera Pin
Dave Kreskowiak25-Apr-12 10:24
mveDave Kreskowiak25-Apr-12 10:24 
GeneralRe: Control Ip Camera Pin
Synodiporos25-Apr-12 10:36
Synodiporos25-Apr-12 10:36 
GeneralRe: Control Ip Camera Pin
Pete O'Hanlon25-Apr-12 10:57
mvePete O'Hanlon25-Apr-12 10:57 
GeneralRe: Control Ip Camera Pin
Synodiporos25-Apr-12 11:16
Synodiporos25-Apr-12 11:16 
GeneralRe: Control Ip Camera Pin
Pete O'Hanlon25-Apr-12 11:47
mvePete O'Hanlon25-Apr-12 11:47 
GeneralRe: Control Ip Camera Pin
Synodiporos25-Apr-12 11:57
Synodiporos25-Apr-12 11:57 
GeneralRe: Control Ip Camera Pin
Pete O'Hanlon25-Apr-12 12:09
mvePete O'Hanlon25-Apr-12 12:09 
GeneralRe: Control Ip Camera Pin
Synodiporos25-Apr-12 12:37
Synodiporos25-Apr-12 12:37 
GeneralRe: Control Ip Camera Pin
Pete O'Hanlon25-Apr-12 22:06
mvePete O'Hanlon25-Apr-12 22:06 
QuestionImage Processing Pin
Vimitha Manohar24-Apr-12 11:14
Vimitha Manohar24-Apr-12 11:14 
AnswerRe: Image Processing Pin
Wes Aday24-Apr-12 11:48
professionalWes Aday24-Apr-12 11:48 
QuestionGet data from 2 tables into a new table to display a list Pin
nhanlaptrinh24-Apr-12 7:45
nhanlaptrinh24-Apr-12 7:45 
AnswerRe: Get data from 2 tables into a new table to display a list Pin
Blue_Boy24-Apr-12 8:26
Blue_Boy24-Apr-12 8:26 
GeneralRe: Get data from 2 tables into a new table to display a list Pin
nhanlaptrinh24-Apr-12 11:16
nhanlaptrinh24-Apr-12 11:16 
QuestionSave objects with derived classes to disc Pin
larsp77724-Apr-12 5:12
larsp77724-Apr-12 5:12 
AnswerRe: Save objects with derived classes to disc Pin
Eddy Vluggen24-Apr-12 5:22
professionalEddy Vluggen24-Apr-12 5:22 
GeneralRe: Save objects with derived classes to disc Pin
larsp77724-Apr-12 5:30
larsp77724-Apr-12 5:30 
AnswerRe: Save objects with derived classes to disc Pin
Eddy Vluggen24-Apr-12 5:37
professionalEddy Vluggen24-Apr-12 5:37 
GeneralRe: Save objects with derived classes to disc Pin
larsp77724-Apr-12 5:48
larsp77724-Apr-12 5:48 
SuggestionRe: Save objects with derived classes to disc Pin
Eddy Vluggen24-Apr-12 5:57
professionalEddy Vluggen24-Apr-12 5:57 
GeneralRe: Save objects with derived classes to disc Pin
larsp77724-Apr-12 6:02
larsp77724-Apr-12 6:02 
GeneralRe: Save objects with derived classes to disc Pin
Eddy Vluggen24-Apr-12 6:15
professionalEddy Vluggen24-Apr-12 6:15 
larsp777 wrote:
Not sure what you mean but I declared a List of objects like:
 

List<book> BookList = new List<book>();

I guess you "need" the attribute because it doesn't know what's going to be stored in the list (being objects).

Can you post me a few lines more? If I put your code in a new project, I get a compile error (as expected, actually);
txt
Error CS0246: The type or namespace name 'List' could not be found (are you missing a using directive or an assembly reference?)


I was expecting a generic list, from the namespace System.Collections.Generic;
C#
System.Collection.Generic.List<Book> bookList = 
    new System.Collections.Generic.List<Book>();

Sounds like the site that I linked in the previous post is right - which means that their solutions might work Smile | :)
Bastard Programmer from Hell Suspicious | :suss:

GeneralRe: Save objects with derived classes to disc Pin
larsp77724-Apr-12 6:21
larsp77724-Apr-12 6:21 
GeneralRe: Save objects with derived classes to disc Pin
Dave Kreskowiak24-Apr-12 8:51
mveDave Kreskowiak24-Apr-12 8:51 
GeneralRe: Save objects with derived classes to disc Pin
larsp77724-Apr-12 10:31
larsp77724-Apr-12 10:31 

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.