Click here to Skip to main content
15,915,019 members
Home / Discussions / C#
   

C#

 
QuestionDeclaration of list in c# Pin
abbd12-Feb-09 23:27
abbd12-Feb-09 23:27 
AnswerRe: Declaration of list in c# Pin
musefan12-Feb-09 23:33
musefan12-Feb-09 23:33 
GeneralRe: Declaration of list in c# Pin
abbd12-Feb-09 23:38
abbd12-Feb-09 23:38 
GeneralRe: Declaration of list in c# Pin
musefan12-Feb-09 23:47
musefan12-Feb-09 23:47 
QuestionRe: Declaration of list in c# Pin
abbd12-Feb-09 23:57
abbd12-Feb-09 23:57 
AnswerRe: Declaration of list in c# Pin
musefan13-Feb-09 0:02
musefan13-Feb-09 0:02 
AnswerRe: Declaration of list in c# Pin
dan!sh 13-Feb-09 0:13
professional dan!sh 13-Feb-09 0:13 
AnswerRe: Declaration of list in c# Pin
Pete O'Hanlon13-Feb-09 2:20
mvePete O'Hanlon13-Feb-09 2:20 
I'm guessing that your post actually says List<OrderData> _orderDataList;. The < and > symbols get treated as HTML tags if you don't convert them.

Anyhoo - your problem here is that the class that contains this List is in a different namespace to the OrderData class (assuming it's in the same project - you may need to add the OrderData dll if it's in a different assembly). If you put your cursor on the OrderData text you will see a little red rectangle appear under the text - press Shift+Alt+F10 to drop down a menu containing the options on how to fix this - the first one will normally add a using statement to your file to fix this problem.

If the rectangle doesn't appear, you'll manually have to enter it - either by putting using ... at the top, or prepending OrderData with the namespace.

"WPF has many lovers. It's a veritable porn star!" - Josh Smith

My blog | My articles | MoXAML PowerToys



AnswerRe: Declaration of list in c# Pin
Ennis Ray Lynch, Jr.13-Feb-09 4:43
Ennis Ray Lynch, Jr.13-Feb-09 4:43 
QuestionHow to create a class instance inside a webservice class Pin
Nikki0512-Feb-09 23:20
Nikki0512-Feb-09 23:20 
AnswerRe: How to create a class instance inside a webservice class Pin
Guffa13-Feb-09 1:06
Guffa13-Feb-09 1:06 
GeneralRe: How to create a class instance inside a webservice class Pin
Nikki0513-Feb-09 1:15
Nikki0513-Feb-09 1:15 
GeneralRe: How to create a class instance inside a webservice class Pin
Guffa13-Feb-09 2:01
Guffa13-Feb-09 2:01 
GeneralRe: How to create a class instance inside a webservice class Pin
Nikki0513-Feb-09 17:29
Nikki0513-Feb-09 17:29 
QuestionDataGridview Problem Pin
Nitin K12-Feb-09 23:13
Nitin K12-Feb-09 23:13 
AnswerRe: DataGridview Problem Pin
Henry Minute13-Feb-09 5:53
Henry Minute13-Feb-09 5:53 
QuestionHow to Create share in Vista Pin
Joe Rozario12-Feb-09 22:25
Joe Rozario12-Feb-09 22:25 
QuestionPDF sharp Pin
abbd12-Feb-09 22:21
abbd12-Feb-09 22:21 
AnswerRe: PDF sharp Pin
DaveyM6912-Feb-09 23:36
professionalDaveyM6912-Feb-09 23:36 
QuestionGame Logic Implementation Pin
The Dust Puppy12-Feb-09 22:10
The Dust Puppy12-Feb-09 22:10 
AnswerRe: Game Logic Implementation Pin
Rob Philpott12-Feb-09 22:31
Rob Philpott12-Feb-09 22:31 
AnswerRe: Game Logic Implementation Pin
musefan12-Feb-09 23:31
musefan12-Feb-09 23:31 
GeneralRe: Game Logic Implementation Pin
The Dust Puppy13-Feb-09 1:06
The Dust Puppy13-Feb-09 1:06 
GeneralRe: Game Logic Implementation Pin
musefan13-Feb-09 1:22
musefan13-Feb-09 1:22 
GeneralRe: Game Logic Implementation Pin
The Dust Puppy13-Feb-09 1:31
The Dust Puppy13-Feb-09 1: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.