Click here to Skip to main content
15,905,679 members
Home / Discussions / C#
   

C#

 
GeneralRe: get the file type of a file Pin
Dave Kreskowiak5-Apr-10 7:54
mveDave Kreskowiak5-Apr-10 7:54 
GeneralRe: get the file type of a file Pin
PIEBALDconsult5-Apr-10 8:48
mvePIEBALDconsult5-Apr-10 8:48 
GeneralRe: get the file type of a file Pin
Dave Kreskowiak5-Apr-10 10:19
mveDave Kreskowiak5-Apr-10 10:19 
GeneralRe: get the file type of a file Pin
PIEBALDconsult5-Apr-10 12:02
mvePIEBALDconsult5-Apr-10 12:02 
AnswerRe: get the file type of a file Pin
harold aptroot5-Apr-10 5:11
harold aptroot5-Apr-10 5:11 
GeneralRe: get the file type of a file Pin
PIEBALDconsult5-Apr-10 9:29
mvePIEBALDconsult5-Apr-10 9:29 
GeneralRe: get the file type of a file Pin
harold aptroot5-Apr-10 12:35
harold aptroot5-Apr-10 12:35 
AnswerRe: get the file type of a file Pin
AspDotNetDev5-Apr-10 11:40
protectorAspDotNetDev5-Apr-10 11:40 
QuestionIs there any lnk parser in C#? Pin
newcoder19995-Apr-10 4:07
newcoder19995-Apr-10 4:07 
QuestionWhite Flicker When Observing an Application Using Double Buffer Over RDP Pin
Catfish5405-Apr-10 3:33
Catfish5405-Apr-10 3:33 
QuestionFileSystemWatcher HELP PLEASE !! Pin
Rikq4-Apr-10 21:21
Rikq4-Apr-10 21:21 
AnswerRe: FileSystemWatcher HELP PLEASE !! Pin
OriginalGriff4-Apr-10 21:54
mveOriginalGriff4-Apr-10 21:54 
AnswerRe: FileSystemWatcher HELP PLEASE !! Pin
FyreWyrm5-Apr-10 16:12
FyreWyrm5-Apr-10 16:12 
QuestionHow to send Email in C# through the Exchange Server? Pin
ravis194-Apr-10 21:00
ravis194-Apr-10 21:00 
AnswerRe: How to send Email in C# through the Exchange Server? Pin
Abhinav S4-Apr-10 21:49
Abhinav S4-Apr-10 21:49 
QuestionHow to ATL COM exe(out-of-proc) in .net? Pin
SRKSHOME4-Apr-10 20:32
SRKSHOME4-Apr-10 20:32 
QuestionWindows Service service Account = Network Pin
yadlaprasad4-Apr-10 20:18
yadlaprasad4-Apr-10 20:18 
AnswerRe: Windows Service service Account = Network Pin
Dave Kreskowiak5-Apr-10 1:53
mveDave Kreskowiak5-Apr-10 1:53 
AnswerRe: Windows Service service Account = Network Pin
PIEBALDconsult5-Apr-10 3:38
mvePIEBALDconsult5-Apr-10 3:38 
Questioniteration Pin
adrian5644-Apr-10 19:34
adrian5644-Apr-10 19:34 
AnswerRe: iteration Pin
Abhinav S4-Apr-10 19:51
Abhinav S4-Apr-10 19:51 
GeneralRe: iteration Pin
adrian5644-Apr-10 19:55
adrian5644-Apr-10 19:55 
Hello all,

I would appreciate any help that can be given. I'm new to c# and mostly develop in c++. I'm using Microsoft Visual Studio 2010 as my IDE. My question is I'd like to ouput cars from a car collection. I'm using a 3rd party DLL library. As far as I know the dll has 2 classes. They are CarCollection and Car.

CarCollection has the following functions:

using System;
using System.Collections.Generic;

namespace CaraPartnersSdk
{
public class CarCollection
{
public CarCollection();

public IEnumerable<Car> FindByName(string name);
public Car GetByID(int id);
}
}


Car.cs:

using System;
using System.Collections.Generic;

namespace CaraPartnersSdk
{
public class Car
{
public Car();

public string AlternateForm { get; }
public Condition Condition { get; }
public IEnumerable<Car> ConnectsToCars { get; }
public bool HasBeenOpened { get; }
public int ID { get; }
public string Name { get; }
public string OptionalAttributesXml { get; }
public decimal Price { get; }
public string Set { get; }
public int Strength { get; }
}
}


All I'm trying to do is output each Car's name and ID which is in the dll. For now, I'm using a simple main class. I have no idea how to iterate through the CarCollection since it's not an array or actual collection. I'm doing CarCollection aCollection = new CarCollection(); When I use aCollection.FindByName() I get a message which does not help. After that I'm stumped. I know I have to use public IEnumerable&lt;Car&gt; FindByName(string name); from the CarCollection class but I have no idea how. I wish they passed the collection as an array because then I can do a simple for loop like
for(int i = 0; i
{
collection(i).getName();
}
something like that, but I guess thats not the case. Please I would appreciate any help. Thanks.

-Adrian
GeneralRe: iteration Pin
VCsamir4-Apr-10 20:33
VCsamir4-Apr-10 20:33 
GeneralRe: iteration Pin
adrian5645-Apr-10 8:00
adrian5645-Apr-10 8:00 
GeneralRe: iteration Pin
adrian5645-Apr-10 8:01
adrian5645-Apr-10 8:01 

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.