XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
Currently it is a bit tricky to create an .editorconfig with xsharp specific settings. It would be helpful to have a button somewhere in the X# Options, that generates and...
At this moment we update editor settings when the Tools/Options dialog is closed. We should do something similar whenever a .editorconfig file that is part of the solution is changed.
C# 9 and C# 10 have added a record type See https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/record This is very much like a class but the values are immutable.
Visual Studio offers the "Generate Override" feature for c# code (https://docs.microsoft.com/en-us/visualstudio/ide/reference/generate-override) Could you add this feature in a similar form to x#? Maybe as a new LightBulb option called "Create...
Prepare RDD system and RDD Classes and Functions for record numbers and record counts of size INT64
Add support of the `` tag so that summary for a method would be searched in its parent class/interface.
From the discussion in Issue #552 I noticed, that @fforay is currently working on the "format document" process. Since there is work happening in this area, I wanna ask, if...
In our legacy applications, we use late bound calls extensively. To raise awareness to the developer, that method calls / assigns / accesses are done in late bound (and therefore...
We would like to reference list elements of generic lists like var olist := List{} in macro expression in the form |olist|olist[1] **Describe the solution you'd like** Currently this finishes...