Click here to Skip to main content
15,885,839 members
Articles
(untagged)

Named Bookmarks Add-In for VS.NET

Rate me:
Please Sign up or sign in to vote.
4.17/5 (5 votes)
25 Apr 20052 min read 41.1K   921   10  
Add-In for Visual Studio .NET that implement concept of Named Bookmarks
using System;

namespace SolBookmarks
{
	/// <summary>
	/// Summary description for BookmarkData.
	/// </summary>
	public class BookmarkData
	{
		public BookmarkData()
		{
			//
			// TODO: Add constructor logic here
			//
		}
		public	String	name { set { _name = value;  } get { return _name; } }	
		private String	_name = null;

		public	String	class_name { set { _class_name = value;  } get { return _class_name; } }	
		private String	_class_name = null;

		public	String	function { set { _function = value;  } get { return _function; } }	
		private String	_function = null;

		public	String	path { set { _path = value;  } get { return _path; } }	
		private String	_path = null;

		public	string	file { set { _file = value; } get { return _file; } }
		private String	_file = null;

		public	string	label { set { _label = value; } get { return _label; } }
		private String	_label = null; 

		public	int		offset_line { set { _offset_line = value; } get { return _offset_line; } }
		private int		_offset_line = 0;

		public	int		line { set { _line = value; } get { return _line; } }
		private int		_line = 0;

		public override string ToString()
		{
			return name != null ? name : base.ToString ();
		}

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions