-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
String format result wrong: FormatPatternString are outputed #39
Comments
Not sure if this github is still active, if you need csharp to Javascript give bridge.net a try. I use it in production |
Sorry for late reply, and thank you for suggestion! |
if you need any help with bridge just give me a buzz - [email protected] |
Hey guys, I've been following the Blazor project with a lot of energy, and in my opinion, this is the way forward here. I enjoyed playing with WootzJs, but Blazor seems first class, so that's where I'd put my marbles. :) |
Blazor is good and all, but been able to interact with the dom and other javascript is way off from being ready for production. |
Code:
System.Console.WriteLine$2("{0:yyyy-MM-dd HH:mm:ss}",[System.DateTime.get_Now()])
Resuit:
{0:yyyy-MM-dd HH:mm:ss}2018-03-29 09:41:45
expected:
2018-03-29 09:41:45
without format stringCode:
System.Console.WriteLine$2("{0:yyyy-MM-dd HH:mm:ss},{1}",[System.DateTime.get_Now(),0])
Result:
{0:yyyy-MM-dd HH:mm:ss},{1}2018-03-29 09:43:39,0
expected:
2018-03-29 09:43:39,0
without format stringbuild in vs2017. Run in Chrome console command-line
The text was updated successfully, but these errors were encountered: