Skip to main content

Home/ Coders/ Group items tagged languages .net development

Rss Feed Group items tagged

Joel Bennett

Phalanger - The PHP Language Compiler for the .NET Framework - 5 views

  • Phalanger is a new PHP implementation introducing the PHP language into the family of compiled .NET languages
  • Makes PHP first-class citizen in the .NET languages family Compiles PHP language to the MSIL (Microsoft Intermediate Language), which is a byte-code assembly used by the .NET CLR Allows using .NET objects from the PHP language thanks to the PHP/CLR Language Extensions Enables using libraries written in PHP from other .NET languages
  •  
    Compiles PHP to MSIL and now supports using .Net objects from PHP
Biztech Consultancy

C Sharp Development - One of the best platforms for developing mobile websites & custom... - 1 views

  •  
    C Sharp or C# is one of the widely used object oriented programming languages in the world. The C# Development platform was introduced by Microsoft within its .Net Initiative. This language, later, was approved as a standard by ECMA and ISO. It is one of the well-known programming languages designed for the Common Language Infrastructure.
Joel Bennett

Polyglot Programming | Dr. Dobb's | May 1, 2002 - 0 views

  • Everyone will benefit, even the Java community: Now that there's competition again, new constructs are—surprise!—again being considered for Java
  • Do languages have to sacrifice anything?
  • .NET goes much further: A routine written in a language L1 may call another routine written in a different language L2. A module in L1 may declare a variable whose type is a class declared in L2, and then call the corresponding L2 routines on that variable. If both languages are object oriented, a class in L1 can inherit from a class in L2. Exceptions triggered by a routine written in L1 and not handled on the L1 side will be passed to the caller, which—if written in L2—will process it using L2's own exception-handling mechanism. During a debugging session, you may move freely and seamlessly across modules written in L1 and L2. I don't know about you, but I've never seen anything coming even close to this level of interoperability.
  •  
    This ability to mix languages offers great promise for the future of programming languages, as the practical advance of new language designs will no longer be hindered by the library issue ...
Joel Bennett

Dynamic Languages : The Official Microsoft Silverlight Site - 0 views

  •  
    The Silverlight Dynamic Languages SDK enables developers to use dynamic languages running on the Dynamic Language Runtime (DLR) to build Silverlight applications.
Joel Bennett

Microsoft Axum - Download Details - 0 views

  • Installer: Axum is an incubation project from Microsoft’s Parallel Computing Platform that aims to validate a safe and productive parallel programming model for the .NET framework. It’s a language that builds upon the architecture of the web and the principles of isolation, actors, and message-passing to increase application safety, responsiveness, scalability and developer productivity. Other advanced concepts we are exploring are data flow networks, asynchronous methods, and type annotations for taming side-effects. Programmer's Guide: Use this simple and easy to follow programmer's guide to learn how to create safe, scalable, and responsive applications with the Axum language. Language Specification: A detailed specification of the Axum language.
  •  
    A .NET language for safe, scalable and productive parallel programming through isolation, actors and message-passing ...
Joel Bennett

Microsoft F# Developer Center - 0 views

  •  
    F# is a functional programming language for the .NET Framework. It combines the succinct, expressive, and compositional style of functional programming with the runtime, libraries, interoperability, and object model of .NET. -- and it had a new CTP in September 2008
Andrey Karpov

The 10 Commandments of Good Source Control Management - 0 views

  •  
    Ah source control, if there's a more essential tool which indiscriminately spans programming languages without favour, I'm yet to see it. It's an essential component of how so many of us work; the lifeblood of many development teams, if you like. So why do we often get it so wrong? Why are some of the really core, fundamentals of version control systems often so poorly understood? I boil it down to 10 practices - or "commandments" if you like - which often break down or are not properly understand to begin with. These are all relevant to version control products of all types and programming languages of all flavours. I'll pick some examples from Subversion and .NET but they're broadly applicable to other technologies.
Joel Bennett

Using C++ Interop (Implicit PInvoke) - 0 views

  • C++ Interop is recommended over explicit PInvoke because it provides better type safety, is typically less tedious to implement, is more forgiving if the unmanaged API is modified, and makes performance enhancements possible that are not possible with explicit PInvoke.
  • C++ Interop allows COM components to be accessed at will and does not require separate interop assemblies
  •  
    Because it is the language of the native APIs, Visual C++ has a special status on Windows which makes it  the best language for interacting with the platform APIs -- whether those are pure C++ APIs or COM components. This is partly due to the fact that unlike other .NET languages, Visual C++ allows managed and unmanaged code to exist in the same application and even in the same file ... allowing integration with existing apps and platform APIs that is just not possible in other .NET languages.
Jungle Jar

JungleJar | Featured Web Application: PHPanywhere.net - 0 views

  •  
    This is an extremely cool and useful web application, and if it hasn't been thought of before, I'm absolutely shocked, because it makes so much sense. Essentially, PHPanywhere is a web based free Integrated Development Environment or IDE for the PHP language. In other words it is a web based application that provides PHP developers a PHP code editor that mocks a desktop application, and it does so very well.
htmlslicemate.com

Say Hello to PowerShell - 0 views

  •  
    PowerShell is Microsoft's task automation framework, consisting of a command-line shell, an integrated scripting environment (ISE), a scripting language built on .NET Framework, an API allowing you to host PowerShell in your .NET applications, and it is a distributed automation platform. PowerShell provides full access to COM and WMI, enabling you to perform tasks on both local and remote Windows systems. PowerShell is a new breed platform for automation, in that it solves administration and adaptability challenges by seamlessly integrating the .NET Framework. It's good for developers, administrators, testers and more. Based on .NET, the tool drives down costs, while providing developers and administrators a simple and enterprise-ready way to automate, measure and improve all of their processes.
Joel Bennett

Deriving from WebClient to handle persisting cookies for login - 0 views

  • Then just use the ExWebClient class to make your requests;
  • Public Class CookieWebClient : Inherits WebClient ' overridden to add cookie headers to http requests. Protected Overrides Function GetWebRequest(ByVal address As System.Uri) As System.Net.WebRequest Dim request As WebRequest = MyBase.GetWebRequest(address) If TypeOf request Is HttpWebRequest Then DirectCast(request, HttpWebRequest).CookieContainer = _cookies End If Return request End Function ' overridden to save cookies to the container for http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function ' overridden to save cookies to the container for async http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest, ByVal result As System.IAsyncResult) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request, result) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function Private Shared _cookies As CookieContainer = New CookieContainer End Class
Joel Bennett

The Eagle Project - TCL for the .Net CLR - 0 views

  •  
    An implementation of the Tcl scripting language for the Common Language Runtime (CLR), intended as a scripting solution.
anonymous

dbscript php framework - 0 views

  •  
    dbscript is a web development framework, it helps php programmers take advantage of efficient design patterns and idioms from other dynamic languages and frameworks. for example, the Mapper and Route classes work together to map actions and records to distinct urls. among the many advantages of routes are the automatic named routes: url_for( resource ). restful urls, http-style controllers, atompub/html introspection documents and content-negotiation are among the sophisticated features of this programmer-centric development tool. the framework is a database abstraction layer, with built-in adapters for PostgreSQL and MySQL.
anonymous

All-In-One Code Framework - 7 views

  •  
    Microsoft All-In-One Code Framework delineates the framework and skeleton of Microsoft development techniques through typical sample codes in three popular programming languages (Visual C#, VB.NET, Visual C++). Each sample is elaborately selected, composed, and documented to demonstrate one frequently-asked, tested or used coding scenario based on our support experience in MSDN newsgroups and forums.
Joel Bennett

Isolation, Agents, and Message-passing in .NET - Axum Team Blog - 0 views

  •  
    This is the team blog for the Microsoft Research team working on "Axum" (another parallel programming language for .Net).
Joel Bennett

The C# Language Specification - 0 views

  •  
    The official C# language specification(s)...
  •  
    Like this http://www.hdfilmsaati.net Film,dvd,download,free download,product... ppc,adword,adsense,amazon,clickbank,osell,bookmark,dofollow,edu,gov,ads,linkwell,traffic,scor,serp,goggle,bing,yahoo.ads,ads network,ads goggle,bing,quality links,link best,ptr,cpa,bpa
  •  
    Like this http://www.hdfilmsaati.net Film,dvd,download,free download,product... ppc,adword,adsense,amazon,clickbank,osell,bookmark,dofollow,edu,gov,ads,linkwell,traffic,scor,serp,goggle,bing,yahoo.ads,ads network,ads goggle,bing,quality links,link best,ptr,cpa,bpa
Joel Bennett

Crossing the Divide - Compile .Net to Java! - 0 views

  •  
    Grasshopper enables .NET developers to cross-compile Microsoft IL (i.e.: the output of any .NET programming language) to Java bytecode, using the open source Mono Project's class libraries.
Ravi Kumar

asp.net mvc, c#, programming language, google maps, software, technology - 0 views

  •  
    Free code, example and tutorials for software developers, software architects and team leads. Sharing experience with application software, geographic information systems,open source gis, web gis, google maps,technology articles, technology news, newest technology,emerging technology
Joel Bennett

LinFu - GitHub - 2 views

  •  
    Philip Laureano's LinFu is a framework for adding mixins, inversion of control, dynamic proxies, duck typing, delegates, etc. to any .Net language.
Joel Bennett

ColorCode - Syntax Highlighting/Colorization for .NET - Release: ColorCode 1.0 - 0 views

  •  
    ColorCode is the syntax highlighting code which supports CodePlex
  •  
    ColorCode is the syntax highlighting code which supports CodePlex -- will someone PLEASE write a PowerShell language for it and donate it to them?
1 - 20 of 44 Next › Last »
Showing 20 items per page