NMath User's Guide

TOC | Previous | Next | Index

36.2 Namespaces (.NET, C#, CSharp, VB, Visual Basic, F#)

All types in NMath are in the CenterSpace.NMath.Core namespace. To avoid using fully qualified names, preface your code with the namespace statement. For example:

Code Example – C#

using CenterSpace.NMath.Core;

Code Example – VB

Imports CenterSpace.NMath.Core

All NMath code shown in this manual assumes the presence of such a namespace statement.

 


Top

Top