|   | DecisionTreeToAssembly Method (String, String, String) | 
        
         
              Creates a .NET assembly (.dll) containing a static class of
              the given name implementing the decision tree. The class will
              contain a single static Compute method implementing the tree.
            
 
    Namespace: 
   Accord.MachineLearning.DecisionTrees
    Assembly:
   Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
 Syntax
Syntaxpublic void ToAssembly(
	string assemblyName,
	string moduleName,
	string className
)
Public Sub ToAssembly ( 
	assemblyName As String,
	moduleName As String,
	className As String
)
Parameters
- assemblyName
- Type: SystemString
 The name of the assembly to generate.
- moduleName
- Type: SystemString
 The namespace which should contain the class.
- className
- Type: SystemString
 The name of the generated static class.
 See Also
See Also