Andrew Harry
Andrew Harry
I am struggling to get the string.format to work with date formats I have stepped through the code and it appears that the constructor for my date object doesn't have...
The following piece of ScriptSharp code is getting translated into javascript which doesn't retain the correct logic: //C# code SyncData sync = (!Script.IsUndefined(GlobalVariables.SyncData)) ? GlobalVariables.SyncData : null; //Javascript var sync...
The following C# code produces javascript which is broken: The stringvalue.replace is swapped for stringvalue.ss.replaceString ss is undefined ``` public static string NumberToString(Number value) { if (value >= 0) {...
Is it possible to define class attributes to support the google closure compiler?