-
Hey there,
For a project I'm working on I would like to visit every type declaration and add them into a different namespace.
I'm using NRefactory with the visitor pattern in order to achieve this.…
-
```
What steps will reproduce the problem?
Compile the following code:
[JsType(JsMode.Clr, Filename = "res/Default.js")]
public class TestClasses
{
public TestClasses()
{…
-
Code
``` c#
public interface IT
{
int Getter { get; }
int Setter { set; }
int GetterSetter { get; set; }
void Method();
}
public class T : IT
{
…
-
Hello
First of all, thanks for this amazing web app, it's really useful and very well done! I especially like how it renders XML docs when navigating through the API.
-
When a file is selected, the classes, methods, and other declarations should be visible in the "Document Outline" pad like they are for the C# binding add-in.
![image](https://f.cloud.github.com/asse…
-
Once upon a time this was [Monodevelop][1] but since it looks like there's no development going on and it doesn't support the 15.x build tools it's probably time for a change of recommendation.
The…
-
Now GitHub allows old projects to be archived, so this one should be marked explicitly that way to avoid confusion.
lextm updated
4 years ago
-
So that properties can be excluded from the PropertyGrid through code.
-
Console.WriteLine($"This should work but the compiler explodes if the string is too long!");
This leads to an IndexOutOfRangeException.
lta14 updated
8 years ago
-
This code:
```cs
public class Class1
{
private object X = new object();
}
```
results in typescript:
```ts
class Class1 extends NObject
{
private X: any = new any…