0

Setting SOURCE_BROWSER = TRUE show source code for all files.

Is it possible to show source of specific file?
Or enable \ref or equivalent using SOURCE_BROWSER = FALSE
Or remove source code for specifics files if SOURCE_BROWSER = TRUE
Or equivalent

Cobaia
  • 1,503
  • 3
  • 22
  • 41

1 Answers1

0

It is possible using \include and \verbinclude.

/**
* \verbinclude Example.cs
* \include Example.cs
* */
public class Example
{

}
albert
  • 8,285
  • 3
  • 19
  • 32
Cobaia
  • 1,503
  • 3
  • 22
  • 41