XSharpPublic icon indicating copy to clipboard operation
XSharpPublic copied to clipboard

Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.

Results 197 XSharpPublic issues
Sort by recently updated
recently updated
newest added

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...

bug
Macrocompiler

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...

enhancement
Runtime
FoxPro

if executed in a macro, this results in 1, not in 1,67 ?&("10/6")

enhancement
Runtime
Macrocompiler

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 //...

bug
Compiler
documentation

**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...

bug
Compiler
FoxPro

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...

bug
wontfix
Compiler

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...

bug
VFPXPorter

Using the syntax i"Some text ({ex:Message)}" causes an internal compiler error altough it is a syntax error. ![Image](https://github.com/user-attachments/assets/610981bb-c4f2-41d3-b025-6ace79f834d6) I am using X# 2.18.0.4 (release) Peter

Compiler

The documentation for DESTRUCTOR is bogus: https://www.xsharp.eu/help/command_destructor.html ![Help_DESTRUCTOR](https://github.com/user-attachments/assets/c762a470-5b05-4301-bf61-501c66fa5f68)

bug
documentation

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...

enhancement
Compiler