Node.cs

码农软件 · 软件分类 · 高性能网络开发库 · 2019-09-02 08:11:58

软件介绍

Node.cs 是用 C# 实现的 Node.js 。

示例代码:

public class Webserver : INodeProgram
{
    public int Main( string[] args )
    {
        new HttpServer( ( IHttpTransaction t ) =>
        {
            Console.WriteLine( "got connection {0}", t.Request.Path );
            t.Response.Write( "<H1>Hello World!</H1>" );
            t.Response.End();
        }, IOLoop.Instance ).Listen( "10.0.2.15", 8080 );
        Console.WriteLine( "listening on 8080" );
        return 0;
    }
}

本文地址:https://codercto.com/soft/d/13693.html

Game Programming Patterns

Game Programming Patterns

Robert Nystrom / Genever Benning / 2014-11-2 / USD 39.95

The biggest challenge facing many game programmers is completing their game. Most game projects fizzle out, overwhelmed by the complexity of their own code. Game Programming Patterns tackles that exac......一起来看看 《Game Programming Patterns》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试