Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
User name:
Password:
Save Password
Forgot your password?

 All Forums
 Visual Assist
 Technical Support
 VA 1711: property bug in outline
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

Uniwares
Tomato Guru

Portugal
2321 Posts

Posted - Feb 17 2009 :  12:36:41 PM  Show Profile  Reply with Quote
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; }

accord
Whole Tomato Software

United Kingdom
3287 Posts

Posted - Feb 18 2009 :  11:47:14 AM  Show Profile  Reply with Quote
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; }
    }
}
Go to Top of Page

Uniwares
Tomato Guru

Portugal
2321 Posts

Posted - Feb 19 2009 :  6:21:37 PM  Show Profile  Reply with Quote
Confirmed, working fine in 1715.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000