BRIDGE.NET - Run C# Code on Any Device
BRIDGE.NET is a platform which integrates with Visual Studio.NET and allows you to write your code in C# and then compile to Javascript
This enables you to run that C# code on any device which supports Javascript.
Check out BRIDGE.NET at
http://bridge.net/
C# Code
Javascript Code Generated
This enables you to run that C# code on any device which supports Javascript.
Check out BRIDGE.NET at
http://bridge.net/
C# Code
using Bridge;
using Bridge.Html5;
namespace DemoApp
{
public class App
{
[Ready]
public static void Main()
{
Window.Alert("Hello World");
}
}
}
Javascript Code Generated
Bridge.Class.define('DemoApp.App', {
statics: {
$config: {
init: function () {
Bridge.ready(this.main);
}
},
main: function () {
window.alert("Hello World");
}
}
});
Comments
Post a Comment