Bernd Baumanns

Results 57 comments of Bernd Baumanns

Unfortunately Alexander don't want to continue working on this project. In addition it is not true that it misses only native implementation. What it does for example wrong is name...

In the new templates these implicit usings are enabled by default. I created a test pr with a helloWorld sample without touching the csproj file. The test fails currently.

I tried the PL/SQL grammer with a CSharp target - it is slow here, too. And it reported some ambiguities... Could you improve the grammar?

As you know, I use very much the `TestCaseSource` - which is super great. What I want now is some way to report more information as just "pass" or "fail"...

This fixes not a bug but provides a reasonable ToString implementation for these two classes similar to other Definition-classes (like Pipelinedefinition)

@BorisDog: I created a [JIRA ](https://jira.mongodb.org/browse/CSHARP-3941)ticket...

@miyu: today you can do it this way: ```csharp using System; struct X : IDisposable { int x; public void Dispose() { Console.WriteLine(x); } public void Foo(){ x++; Console.WriteLine("XXX"); x++;...