Posted Thursday, June 25, 2009 10:29 AM
|
|
|
|
I am using the following .NET Framework namespace:
Imports System.Drawing.Drawing2D
which has a "Matrix" command that conflicts with "Matrix" in all of your examples.
|
|
Posted Friday, June 26, 2009 8:58 AM
|
|
|
|
| You can avoid this conflict by one of the following methods: 1) Ommit "Imports System.Drawing.Drawing2D" and use the full namaspace-class name declaration for classes in the System.Drawing.Drawing2D namespace 2) Ommit "Imports Bluebit.MatrixLibrary" and use full namespace-class name declarations for classes in Blusbit.MatrixLibrary namespac. e.g. Dim A As Bluebit.MatrixLibrary.Matrix = new Bluebit.MatrixLibrary.Matrix(10, 10)
Trifon Triantafillidis | Lead Developer |
|
|
|
|
|