dCsharp

ClassGraph Constructor

Make a class graph from all classes in the default package, including all non-static fields and non-static non-void no-argument methods.

Overload List

Make a class graph from all classes in the default package, including all non-static fields and non-static non-void no-argument methods.

public ClassGraph();

Make a class graph with just the classes and edges in

cg
reachable by following
s
.

public ClassGraph(ClassGraph,Strategy);

Make a class graph with just the classes and edges in

cg
reachable by following strategy
s
.

public ClassGraph(ClassGraph,string);

Make a class graph with just the classes and edges in

traversal
.

public ClassGraph(Traversal);

Make a class graph from all classes in the package named

pkg
. If
f
is true, include all non-static fields; if
m
is true, include all non-static non-void no-argument methods. These settings will apply by default for all classes added to the class graph in the future.

public ClassGraph(Assembly,bool,bool);

See Also

ClassGraph Class | edu.neu.ccs.demeter.dCsharp Namespace