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 CortexZenUSA, Today, 12:53 AM
      0 responses
      1 view
      0 likes
      Last Post CortexZenUSA  
      Started by CortexZenUSA, Today, 12:46 AM
      0 responses
      1 view
      0 likes
      Last Post CortexZenUSA  
      Started by usazencortex, Today, 12:43 AM
      0 responses
      5 views
      0 likes
      Last Post usazencortex  
      Started by sidlercom80, 10-28-2023, 08:49 AM
      168 responses
      2,266 views
      0 likes
      Last Post sidlercom80  
      Started by Barry Milan, Yesterday, 10:35 PM
      3 responses
      13 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Working...
      X