XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
Consider: ``` PUBLIC INTERFACE ITest METHOD Test(nArg AS INT) AS USUAL STRICT METHOD Test(cArg AS STRING) AS USUAL STRICT END INTERFACE PUBLIC CLASS Test IMPLEMENTS ITest PUBLIC METHOD Test(nArg AS...
https://www.xsharp.eu/forum/topic/5500?p=33646 Here are a few missing VFP functions that I needed. It would be great to see them added to XSharp Tools. I'm not proficient enough with XSharp to do...
if executed in a macro, this results in 1, not in 1,67 ?&("10/6")
Based on the documentation sample for ASTYPE (I will correct it): ``` FUNCTION Start() AS VOID Test("abc") FUNCTION Test(oVar AS OBJECT) AS VOID LOCAL oChild := oVar ASTYPE STRING //...
**Describe the bug** The execution does not give the correct result if the value of the control is directly referenced in it. **To Reproduce** Steps to reproduce the behavior: First...
If a class implements an interface the implementation is also case sensitive ``` public interface ITest public property SymVerkauf as symbol get set end interface public class Test implements ITest...
The follow code : SELF:Command2 := XSharp.VFP.UI.CommandButton{} SELF:Command2:Text := "Press Me" SELF:Command2:Name := "Command2" SELF:Command2:Location := System.Drawing.Point{24,48} SELF:Command2:Size := System.Drawing.Size{84, 25} SELF:Command2:vfpClick := "Command2_Click" Will crash with : System.MissingMethodException HResult=0x80131513...
Using the syntax i"Some text ({ex:Message)}" causes an internal compiler error altough it is a syntax error.  I am using X# 2.18.0.4 (release) Peter
The documentation for DESTRUCTOR is bogus: https://www.xsharp.eu/help/command_destructor.html 
like in C# 10. All types following the namespace statement are automatically placed in that namespace. ``` NAMESPACE MyNamespace CLASS Foo END CLASS DELEGATE MyDelegate ``` The class and the...