Robert Campbell

Results 46 issues of Robert Campbell

``` using System; class Program { public static void Main() { Event ev = .(); //Event ev = .(); // replacing the line above with this works around the bug...

This block of code reproduces the issue with an extension of Dictionary: ``` using System.Collections; class MyBuffer{ } struct MyBufferState{ } namespace System.Collections{ extension Dictionary{ public typealias Iterator = TValue*;...

The compiler fails to compile this block of code: ``` public static void AtomicDetach(ref alloctype(T) d) where T : var { if(d.@ref == 1) { return; } var x =...

Code generation error will cause a crash when checking result of nullable in if statement. [Code.zip](https://github.com/beefytech/Beef/files/15139105/Code.zip) The attached project will reproduce the crash if you try to compile it.

With a class ``` class Engine {} ``` type ``` typealias EngineInitCallback = delegate void(Engine engine); ``` When you get to typealias *Engine*, the IDE will crash

This is an elaborate change to work around a little issue where Lumix string.h and math.h were clashing with the windows headers. This doesn't affect Lumix itself, but my fork...

https://github.com/WelderFoundation/WelderEngineRevamp/blob/c1ca14fdc529bfe03b6a99e7a83ec65dccf0c9c7/Code/Libraries/Foundation/Serialization/Binary.cpp#L77

Select objects in the editor viewport, hit Space button, then select "Copy" from the list. You will get a error notification: There is no 'ClipboardEvent' available to run the command...

```C++ if (shell->IsKeyDown(Keys::Control) && (key == Keys::C || key == Keys::X) && shell->mOnCopy) { ClipboardData data; shell->mOnCopy(data, key == Keys::X, shell); ErrorIf(!data.mHasText && !data.mText.Empty(), "Clipboard Text was not empty, but...

The code below works in C#: ```C# abstract class Parent { public abstract int Number { get; } } class Child : Parent { public override int Number { get;...