I think it needs to be defined in a static class:
namespace MyNameSpace
{
public static class ExtensionMethods
{
public static int Add(this int number, int increment)
{
return number + increment;
}
}
}
You must also include using MyNameSpace;in the code file in which you want to use them if it is not in the same namespace
source
share