Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 VA 1711: property bug in outline

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
Uniwares Posted - Feb 17 2009 : 12:36:41 PM
C# 3.0, VS2008

In the following code fragment, Data is shown as method in the VA outline, Name is shown as property.

	/// <summary>
	/// Gets or sets Data.
	/// </summary>
	[System.Xml.Serialization.XmlIgnore]
	public List<Recipient> Data { get; set; }

	/// <summary>
	/// Get the (file) name of the address data.
	/// </summary>
	[System.Xml.Serialization.XmlIgnore]
	public string Name	{ get; set; }

2   L A T E S T    R E P L I E S    (Newest First)
Uniwares Posted - Feb 19 2009 : 6:21:37 PM
Confirmed, working fine in 1715.
accord Posted - Feb 18 2009 : 11:47:14 AM
Can you please try this again with 1715? I see property icon for both Data and Name using VS2008 and VAX 1715.

I placed your example into the default namespace (WindowsFormsApplication3 in Progam.cs in my case), and used an empty Recipient class:

namespace WindowsFormsApplication3
{
// [...] some default code

    class Recipient { }

    class cc {
        /// <summary>
        /// Gets or sets Data.
        /// </summary>
        [System.Xml.Serialization.XmlIgnore]
        public List<Recipient> Data { get; set; }

        /// <summary>
        /// Get the (file) name of the address data.
        /// </summary>
        [System.Xml.Serialization.XmlIgnore]
        public string Name { get; set; }
    }
}

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