FireMonkey X – Amazing overview of FireMonkey FMX Feeds – All your FireMonkey news in one place FMX Demos – FireMonkey can do that? There is a demo for it FMX University – Learn to do amazing things with FireMonkey FireMonkey eXplorer Program – Join…
Creating basic Excel workbook with Open XML [Quote from]http://www.codeproject.com/Articles/371203/Creating-basic-Excel-workbook-with-Open-XML This article describes how to create a basic Excel workbook using Open XML. Is your email address OK? You…
General Purpose Hash Function Algorithms post@: http://www.partow.net/programming/hashfunctions/index.html Description Hashing Methodologies Hash Functions and Prime Numbers Bit Biases Various Forms Of Hashing String Hashing Cryptographic Hashi…
Azure Functions lets you execute your code in a serverless environment without having to first create a VM or publish a web application. In this article, you learn how to use the Visual Studio 2017 tools for Azure Functions to locally create and test…
http://clrprofiler.codeplex.com/ http://blogs.msdn.com/b/davbr/archive/2012/11/19/clrprofiler-4-5-released-includes-windows-store-app-support.aspx Rewrite MSIL Code on the Fly with the .NET Framework Profiling API Aleksandr Mikunov This article assum…
https://msdn.microsoft.com/en-us/library/bb397951.aspx Expression trees represent code in a tree-like data structure, where each node is an expression, for example, a method call or a binary operation such as x < y. You can compile and run code repre…
http://netmvc.blogspot.com/2012/11/javascript-modularity-with-requirejs.html Today I would like to describe how you can make your JavaScript code much much much better. We know a lot about how to make our c# code much better. And we always use it. We…
How to call javascript function on page load in asp.net 解答1,使用RegisterStartupScript来运行 需要注意的是,下面的demo,显示的是执行某一个函数 Calling JavaScript function on code behind i.e. On Page_Load ClientScript.RegisterStartupScript(GetType(), "Javascript", "java…
注:本文提到的代码示例下载地址>How to create a simple extension for VS Code VS Code 是微软推出的一款轻量级的代码编辑器,免费,开源,支持多种语言,还能安装各种扩展.没有用过的同学可以下载下来感受一下,具体参见官方文档. 假设VS Code你已经安装好了,也已经大概玩过一遍了.接下来我们就开始讲讲怎么创建一个简单的VS Code扩展. 首先要装下node.js,然后通过命令行安装Yeoman,我们要通过这个工具来自动生成扩展代码: >npm…
var F = function(){}; Objcert.prototype.a = function(){}; Function.prototype.b = function(){}; F 既能访问到a,也能访问到(Object 和 Function也同样,但是所有的实例只能访问到a):F是Object 和 Function 两个的实例,那么Object 和 Function 到底是什么关系? 下面是对Object 和 Function 的了解 F instanceof Object tru…