PC Review


Reply
Thread Tools Rate Thread

Code outlining in Visual Studio2005

 
 
KK
Guest
Posts: n/a
 
      22nd Jun 2006
Dear All
Recently I started using VisualStudio2005 for my C++ development.Earlier I
was using 2003.
I found difference between these two version in showing the code outlining.
For example :

In VS2003
MyClass:: Method(int x, int y ) // We can collapse here
{
if( x < y ) // we can even collapse here also
{
//Do some thing
}
else // collapsible block
{
for( int k = 0; k < ( x-y); k ++ ) // Even for loop can be
collapsible
{
//Do some thing else here
}
}
}

but in 2005
the same above code looks like this

MyClass:: Method(int x, int y ) // We can collapse only here
{
if( x < y ) // not collapsible
{
//Do some thing
}
else // not collapsible
{
for( int k = 0; k < ( x-y); k ++ ) // not collapsible
{
//Do some thing else here
}
}
}

I feel the code outlining feature in 2003 is more useful than in 2005.
Is this a bug in 2005 version or do I need to set some settings?
How can apply the same settings as like in 2003 ( CO++ code outlining that
even outlines loops, conditional statements) to C# code also?

-------------------
Thanks & Regards
Krishna



--
Thanks & Regards
Krishna


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Dataset - XML - 1:n relation --- how can I make with Visual Studio2005 C#2.0 Karin Maier Microsoft C# .NET 0 29th Jun 2006 08:34 PM
Dataset - XML - 1:n relation --- how can I make with Visual Studio2005 C#2.0 =?ISO-8859-15?Q?Sandra_M=FCller?= Microsoft C# .NET 0 29th Jun 2006 08:22 PM
Code outlining in Visual Studio2005 KK Microsoft VC .NET 3 23rd Jun 2006 10:58 AM
Visual Studio2005 Beta2 & "Add Link to existing Item" Norbert Microsoft Dot NET Compact Framework 4 15th Jul 2005 10:42 PM
Calling DLL export function(unmanaged visual c++ code) from managed code(Visual c#,.net) =?Utf-8?B?c2Vhc2g=?= Microsoft C# .NET 1 4th Feb 2004 10:16 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:17 AM.