XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
Foxpro and other dialects use this format to specify a variable that has the name of for example a workarea `SELECT &cArea` We have a UDC `#command SELECT => DbSelectArea(...
I did some experiments to find a way to improving the performance of IVarGet and IVarSet. These methods use reflection to get and set property and field values (GetValue and...
VS Integration: Intellisense does not recognize members of a generic structure nested in a namespace
There is the following code: ``` USING TestNamespace FUNCTION Start() AS VOID STRICT LOCAL gs AS GenericTestStruct ? gs:Value1 // No hints (undeclared) gs: // Nothing RETURN BEGIN NAMESPACE TestNamespace...
In the following example the attribute is intended automatically wrong ```cs class Test [Obsolete]; public method TestMethod1() as void return [Obsolete]; public method TestMethod1() as void return end class ```...
This code compiles and runs even though the datatype of the return value is declared. ``` FUNCTION Start() AS VOID ? ClipTest1() == 0 ? ClipTest2() == NULL_STRING ? ClipTest3()...
## Problem I've tried to run example code from _XBase++_ documentation: https://doc.alaska-software.com/content/fdc_xppfcref_transform.html In several cases _XSharp_ is misbehaving. I use _XSharp 2.9a_, compile code with _xsc.exe_. ### Test 1: Picture...
don´t know if the mentioned problems have already been fixed ... - The func __BuildFieldList() uses XSharp.VFP.Functions.ALen() instead of XSharp.Rt.Functions.ALen() Without the changes - see the comments in the modified...
Good morning guys I still continued testing as long as you do not indicate otherwise. I can't append records in a Work Area created with sqlexec functiona. Dialect FoxPro ```...
This now results in a ReadOnly column. SCATTER/GATHER in a result set with such a column fails because the column is Readonly. Foxpro creates a byte[8] binar column. We should...