Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Editor Bug - Intellisence doesn't work properly with Generics Collections

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Editor Bug - Intellisence doesn't work properly with Generics Collections

    Nothing major, but when you get used to using Intellisence its hard to live without it and the Generics Collection Class is just too sweet.

    //Beginning of Code Example:

    using System.Collections.Generic;

    public class MyObject
    {
    public int valueA;
    public int valueB;
    public int valueC;
    }

    public List<MyObject> myList = new List<MyObject>();

    public MyObject myObject1 = new MyObject();

    myObject1.valueA = 1
    myObject1.valueB = 2
    myObject1.valueC = 3

    myList.Add(myObject1);

    public MyObject myObject2 = new MyObject();

    myObject2.valueA = 7;
    myObject2.valueB = 8;
    myObject2.valueC = 9;

    myList.Add(myObject2);

    for (int i = 0; i < myList.Count; ++i)
    {
    int x = myList[i].
    }

    //End Code Example


    That last dot "." should drop down a list of members from MyObject - valueA,valueB,valueC.

    If I go ahead and grudgingly type(using keyboard) out the member "valueA" (myList[i].valueA) it does compile are runs properly.


    thanks,
    shawnj

    #2
    Thanks, will report to the developer of the editor we use.
    RayNinjaTrader Customer Service

    Comment


      #3
      This is a known limitation. Thanks for reporting though.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by alifarahani, Today, 09:40 AM
      4 responses
      21 views
      0 likes
      Last Post alifarahani  
      Started by gentlebenthebear, Today, 01:30 AM
      3 responses
      16 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by PhillT, Today, 02:16 PM
      2 responses
      7 views
      0 likes
      Last Post PhillT
      by PhillT
       
      Started by Kaledus, Today, 01:29 PM
      4 responses
      11 views
      0 likes
      Last Post Kaledus
      by Kaledus
       
      Started by frankthearm, Yesterday, 09:08 AM
      14 responses
      47 views
      0 likes
      Last Post NinjaTrader_Clayton  
      Working...
      X