scriptsharp
scriptsharp copied to clipboard
Script# Project - a C# to JavaScript compiler, to power your HTML5 and Node.js web development.
Hi, I'm trying to create some custom attributes to use on some classes. I figured out that they have to be declared in a plain c# class library (not a...
How are we supposed to check a parsed Date in 0.8, when Date.IsValid and .Empty are gone? This does not work as expected, because it's not null: ``` csharp if...
Hi, in 0.7.4 I did this: ``` csharp [Imported] public abstract class ControlBase { [PreserveCase] public int Version; } public class ControlA : ControlBase { } ``` So I was...
I love C#, every time I think of a project I try to write it on C#, even for Android or iOS, for that Xamarin has a solution. Here is...
I am trying to map angular and in the constructor of the controller I would like something like: function($scope) { } It would be really useful if I could use...
Hello, I saw a little problem with the following code : ``` C# Int32 a = 5; Int32 b = 2; Int32 c = a / b; ``` In an...
The following code causes the build to fail without an error message: ``` C# class TestClass { public Func TestField = delegate() { return true; }; } ``` Only tested...
I'm not sure if this is a similar issue to https://github.com/nikhilk/scriptsharp/issues/62, but there are times when the generated Javascript doesn't define the classes in the order of execution (or something...
I've spent the last two days on this issue and I'm not sure what is going on. My test case is failing during the TFS gated checkin. **I've validated that:**...
My first inclination when running Script# was to put a breakpoint in my C# code. Of course this doesn't work because the DLL is never loaded. However, I'm looking at...