Skip to main content

Home/ Coders/ Group items tagged .net reference

Rss Feed Group items tagged

trimantra

How to run .NET 2/3.5 website/webapplication into .NET 4 hosting environment | Trimantr... - 0 views

  •  
    It is general requirement that you want to host your ASP.NET 2.0/3.5 website/webapplication onto the hosting server which provide support for .NET Framework 4 but not for .NET Framework 2. At the time of development we normally assume that by default all application should run on .NET Framework 4 because backward compatibility is supported. But sometimes they are not because of new changes into ASP.NET 4.0. Here is the link for your reference: ASP.NET 4 Breaking Changes.
  •  
    It is general requirement that you want to host your ASP.NET 2.0/3.5 website/webapplication onto the hosting server which provide support for .NET Framework 4 but not for .NET Framework 2. At the time of development we normally assume that by default all application should run on .NET Framework 4 because backward compatibility is supported. But sometimes they are not because of new changes into ASP.NET 4.0. Here is the link for your reference: ASP.NET 4 Breaking Changes.
Joel Bennett

The Performance of Arrays - Chris Burrows - 2 views

  • arrays of reference types are covariant in their element type, but not safely
  • where did that exception come from? It came from the runtime, which was in a unique position to know what the real type of the array object was, and the real type of the element. It needed to determine if the assignment was allowable and throw if not. Now if you think about this for a minute, you can see that it’s going to have to perform that check for every assignment to an array element
  • arrays are covariant only for reference types?
  • ...3 more annotations...
  • So if I want to have an array of reference types, but get the runtime to treat it like an array of value types, what have I got to do? Just wrap the reference type in a value type
  • So I got rid of that check, right? But I added the initialization of a value type. Did I win or lose? Let’s do some timing to figure it out.
  • when I build Debug binaries, the Reference<T> trick makes my example about three times SLOWER.
  •  
    Arrays are covariant only for reference types. If you use a struct wrapper to turn a reference type into a value type, the initialization of the value type takes less time than array assignment.
Joel Bennett

Kipunji - by jpobst - GitHub - 1 views

  • advanced cases like generics, interfaces, and nested classes are not implemented
  •  
    Kipunji is a simple, modern ASP.NET MVC web frontend for viewing the API reference documentation of .Net libraries (ie: rendering the xml docs).
Joel Bennett

ModelCopier - An easy way to update models in your ASP.NET MVC business layer - Raj Kaimal - 3 views

  •  
    Automatically copies values (and references) from one object to another matching up on property name and type
Joel Bennett

The 30 Minute (.Net) Regex Tutorial - CodeProject - 0 views

  •  
    A guide to getting started with regular expressions in .Net for begginers all the way through named captures, backreferencing, and lookaround. Barely mentions balancing matches -- which are one of the best features of .Net regex ... but otherwise very good.
Joel Bennett

.NET Book Zero by Charles Petzold - 1 views

  •  
    Charles Petzold's free .Net Book Zero is a great introduction to .Net and C# for the C/C++ programmer ... if you're a Windows programmer who's been curious about C# but haven't known where to start, this is where.
  •  
    How to make $ 40,000 in one month with very quickly. What you need. The latest American news article. Immediately visit www.killdo.de.gg www.fiverr.de.gg www.newss.de.gg www.reddit.de.gg www.newsbbc.de.gg
Joel Bennett

Microsoft Code Name "Zermatt" Beta readme - 0 views

  •  
    The Microsoft Code Name "Zermatt" is a framework targeted for .Net developers to help them to build claims-aware applications to address today's application security requirements using a simplified model that is open and extensible and can improve security. Developers can build externalized authentication capabilities for their applications and build custom "identity providers", often referred to as Security Token Services (STS).
Joel Bennett

Generate .NET documentation with MindTouch 2010 - MindTouch Developer Blog - 4 views

  • The goal of mindtouch.doc was to generate hierarchical reference documentation that could easily be imported into an MindTouch install.
  • The generated documentation has an external dependency on a template called DocToc. The purpose of this template is to allow simple Table of content customization using DekiScript and to make it easy to include custom css for documentation pages.
  •  
    It's like Sandcastle for MindTouch
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.
Joel Bennett

Ian Griffiths' Weblog on WPF and .Net development - 0 views

  •  
    Ian's blog has some great in-depth articles focused on whateever is the latest and greatest in .Net...
Joel Bennett

.Net Framework BCL Team Blog - 0 views

  •  
    The aggregating blog for the BCL (Base Class Library) for the .Net Framework.  Tons of information here as they work toward a new version of the .Net Framework
Joel Bennett

Tracing in .NET and Implementing Your Own Trace Listeners - 0 views

  • TextWriterTraceListener
  •  
    A good place to start if you want to do trace or debug messages from .NET, this article explains the differences between trace and debug, how you can turn them on and off, and how you can set them to trace to file or event log without recompiling. Excellent.
Joel Bennett

Introducing BDD -- DanNorth.net - 0 views

  • I decided it must be possible to present TDD in a way that gets straight to the good stuff and avoids all the pitfalls. My response is behaviour-driven development (BDD).
  •  
    It must be possible to present TDD in a way that gets straight to the good stuff and avoids all the pitfalls... my response is behaviour-driven development (BDD).
Joel Bennett

CLR Add-In Team Blog - 0 views

  •  
    The CLR Add-In team blog ... news about the new System.AddIn that's coming in .Net 3.5
Joel Bennett

Windows Presentation Foundation Add-Ins Overview - 0 views

  • WPF, in conjunction with the .NET Framework add-in model, allows you to address a wide variety of scenarios that require host applications to display UIs from add-ins.
  •  
    Addins (plugins) for WPF can even do UI. I'm not convinced this is necessary to do UIs with plugins, but it's necessary if you want to allow untrusted code to do it.
1 - 20 of 56 Next › Last »
Showing 20 items per page