XSharpPublic
XSharpPublic copied to clipboard
Intellisense does not pickup extensions methods
If I add an extention method to an existing type, intellisense does not pick it up for code completion. System extensions are pickedup though :
PUBLIC STATIC CLASS ArrayExtensions
PUBLIC STATIC METHOD AAdd<T>(SELF source AS ARRAY OF T , item AS T) AS VOID
AAdd<T>(source, item)
RETURN
END CLASS