var dogs = new List<string>(); // Create new list of strings
dogs.Add("Aigi"); // Add string 1
dogs.Add("Spitz"); // 2
dogs.Add("Mastiff"); // 3
dogs.Add("Finnish Spitz"); // 4
dogs.Add("Briard"); // 5
string dogCsv = string.Join(",", dogs.ToArray());
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to create List, string
Collapse
X
-
How to create List, string
Hi Support, I am trying to create a List string similar to this:
but I'm unable to compile in NT, I get an error message saying the namespace name List could not be found, see attached pic. Any idea how I can get this to work?Code:Tags: None
-
Originally posted by yades View PostHi Support, I am trying to create a List string similar to this:
but I'm unable to compile in NT, I get an error message saying the namespace name List could not be found, see attached pic. Any idea how I can get this to work?Code:var dogs = new List<string>(); // Create new list of strings dogs.Add("Aigi"); // Add string 1 dogs.Add("Spitz"); // 2 dogs.Add("Mastiff"); // 3 dogs.Add("Finnish Spitz"); // 4 dogs.Add("Briard"); // 5 string dogCsv = string.Join(",", dogs.ToArray());
Try adding this at the top:
using System.Collections.Generic;
-
Hello yades,
Thanks sledge, yes you would have to add the "System.Collections.Generic" namespace. This is due to the fact that NinjaTrader does not support Lists but it still would be possible to use them as they are a native C# method.
Here is a link that goes over the List Class and also shows the namespace and assembly file that are associated with it that you may view.
JCNinjaTrader Customer Service
Comment
-
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
566 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
547 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
548 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment