Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 generics problem

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
doogey Posted - Apr 29 2008 : 09:00:30 AM
Hi,
I have noticed that the BCL generics are not parsed/handled correctly. I was hoping the latest 1632/1635 releases would fix the problem, but the issue is still present.

The issue really is that the suggestion dropdown box is essentially empty.

Here's some example code that illustrates the problem.


#include "stdafx.h"

using namespace System;
using namespace System::Collections::Generic;

int main(array<System::String ^> ^args)
{
	List<String^>^ stringList = gcnew List<String^>;
	String^ newItem = "first item";

	stringList->Add(newItem);

    Console::WriteLine(L"Hello World");
    return 0;
}


If you type a line like:

newItem->

you get an appropriate suggestions box of "String" things, right?

But if you type a line like:

stringList->

you either get absolutely no suggestion box, or a suggestions box that has one item "?array".

And it happens with the other generic types too.

Thanks,
--Zach
2   L A T E S T    R E P L I E S    (Newest First)
support Posted - Mar 30 2009 : 08:46:35 AM
case=16372 is a duplicate of case=1204

case=1204 is fixed in build 1721
feline Posted - Apr 29 2008 : 11:33:05 AM
I am seeing the same effect here. Thank you for the clear description.

case=16372

For now can you try turning On:

VA Options -> Advanced -> Listboxes -> Get content from default Intellisense

this fixes the problem for me, on my test system.

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000