[C#][AddIN] How to obtain attributes in the current class ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'am developping a simple addin for visual studio .NET 2003.
I'd like to obtain attributes in the current class.
Somebody know how it's possible (EnvDTE CodeVariable ?)
Do you have an exemple ?

Thanks.

Best Regard.
 
Once you have the CodeElement of your class, you cast it to CodeClass and
the Attributes property gives that info.

BTW, you have several resources to develop add-ins on my web site below,
specially more appropriate newsgroups than this one.

--

Carlos J. Quintero

MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET
You can code, design and document much faster.
http://www.mztools.com
 
Back
Top