hpetriffer
hpetriffer
Microsoft has released now with VS 17.9.2 the out of process designer for Winforms to support also 32 bit applications. Unfortunately the new designer throws an exception "**The language for...
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 ```...
It would be a great help if Intellisense could help contextually when writing important keywords in the editor. e.g. if I start with "pu" within a class, the suggestion for...
In C# if I write e.g. "prop" , I get allways also the snippets as result for Intellisense. In X# I have to use always CTRL + K + X...
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 following code ``` C# interface ITest inherit ITest1, ITest2 end interface interface ITest1 property Caption as string get set method Start() as void end interface interface ITest2 property Caption...
The following code is not working (if block is not called): ``` if uSwitch is not logic var bSwitch Console.WriteLine("uSwitch is not logic with var") endif ``` if var bSwitch...
The assignment from an usual of type int to 'float?' results to an InvalidCastException. If the usual is a float it works without problems. ``` local x := 1 as...