member type from /doc:

  • Thread starter Thread starter Chakravarthy Bollapalli \(IFIN SCC AI\)
  • Start date Start date
C

Chakravarthy Bollapalli \(IFIN SCC AI\)

Hi,
I have generated xml documenentation using command
c:\> csc /doc:test.xml test.cs

but I couldnt find any "member type" info in that.

for eg:

I have a "uint" type variable "address" in a class called "test" in namespace "test".
so the xml document says

<member name="F:test.test.address">
<summary>
blah blah
</summary>
</member>

but it no where says it a "uint" type.

now how do I get that information into this xml.

kalyan
 
[Removed invalid group microsoft.public.dotnet.csharp.general]

Chakravarthy Bollapalli (IFIN SCC AI)
I have generated xml documenentation using command
c:\> csc /doc:test.xml test.cs

but I couldnt find any "member type" info in that.

for eg:

I have a "uint" type variable "address" in a class called "test" in namespace "test".
so the xml document says

<member name="F:test.test.address">
<summary>
blah blah
</summary>
</member>

but it no where says it a "uint" type.

now how do I get that information into this xml.

I don't believe it goes in the XML. The idea is that the XML
documentation is used in conjunction with the compiled assembly, which
knows the type of the field.
 
Back
Top