P
Paolo
I have a 'Utilities'dll' defined broadly thus:
namespace Utilities
{
public static class Utils
{
public const int SOMECONST = 1;
public static void someFunc()
{
}
}
I have included a reference to Utilities.dll in my application. The
function is 'seen' by the application but use of the const gives
"'Utilities.Utils' does not contain a definition for SOMECONST".
It's probably something simple but I'm a bit stumped.
namespace Utilities
{
public static class Utils
{
public const int SOMECONST = 1;
public static void someFunc()
{
}
}
I have included a reference to Utilities.dll in my application. The
function is 'seen' by the application but use of the const gives
"'Utilities.Utils' does not contain a definition for SOMECONST".
It's probably something simple but I'm a bit stumped.