Got more questions? Find advice on: SQL | XML | Regular Expressions | Windows
in Search
Welcome to AspAdvice Sign in | Join | Help

Browse by Tags

All Tags » c# » .net
Showing page 1 of 8 (77 total posts)
  • Crypto Obfuscator For .Net 2013 released

    LogicNP Software has released Crypto Obfuscator For .Net 2013 which provides superior code protection, obfuscation, optimization and automatic exception reporting for your .Net assemblies. Crypto Obfuscator combines powerful obfuscation, encryption and optimization techniques to provide the very best protection to your .Net code against ...
    Posted to Announcements (Forum) by ssware on January 17, 2013
  • Shell MegaPack.Net 2010 released.

      LogicNP Software has released Shell MegaPack.Net 2010 which brings total Windows Explorer-like file & folder browser UI functionality to your forms and dialogs in just a couple of seconds. The UI controls can be put right inside your own form or dialog to provide a standard user-friendly look to your application. Consisting of a folder ...
    Posted to Announcements (Forum) by ssware on February 17, 2010
  • Physical Layout of Data - StructLayout

    This week I was taking a close look into various InterOp related stuff for a code review purpose.While doing so the way CLR controls the physical layout of a data structure in memory caught my attention.This is what I intend to discuss here. When we are declaring a set of fields for a structure or class the ordering of variables in the code has ...
    Posted to From .NET Geek's Desk (Weblog) by sankarsan on February 22, 2009
  • Lambda Expressions

    Before getting details of Lambda expressions let us quickly take a look into how we work with delegates and a named method since the days of .NET 1.1.Let us consider the following code sample //Delegate declaration public delegate void Test(string s); class Program    {        static void Main(string[] ...
    Posted to From .NET Geek's Desk (Weblog) by sankarsan on December 28, 2008
  • String Interning in C#

    We all know that string objects are immutable in C# i.e we can only create a new instance of the object we cannot alter or modify them.Let us take a quick look into the following lines of code: static void Main(string[] args)     {         string s1 = ...
    Posted to From .NET Geek's Desk (Weblog) by sankarsan on December 25, 2008
  • Object Equality

    In this post I will discuss about the very basic concepts related to object equality.Object equality can be of two types Value Equality - Two objects having same value for all the fieldsReference Equality - Two instance variables pointing to same reference i.e. same memory location in heap.Let us consider the simple program as shown below: class ...
    Posted to From .NET Geek's Desk (Weblog) by sankarsan on December 25, 2008
  • Upcasting and Downcasting in C#

    While reviewing code and discussing with developers I have seen in several occasions that people are not very clear or conscious about upcasting and downcasting.In this post I would like to note down the differences between the two. Upcasting means casting an object of any type to another type which is above it in the inheritance ...
    Posted to From .NET Geek's Desk (Weblog) by sankarsan on December 22, 2008
  • Shell MegaPack.Net 2009 released.

      Shell MegaPack.Net 2009 brings total Windows Explorer-like file & folder browser UI functionality to your forms and dialogs in just a couple of seconds. The UI controls can be put right inside your own form or dialog to provide a standard user-friendly look to your application. Consisting of a folder tree control, a file & folder ...
    Posted to Announcements (Forum) by ssware on December 19, 2008
  • ILOG Releases Diagram for .NET 1.6

    ILOG Diagram for .NET is a comprehensive set of tools, components and libraries for creating graphical editing, visualization, supervision and monitoring tools for the .NET platform. ILOG Diagram for .NET targets Windows Forms, ASP.NET, and WPF. Take a look at http://www.ilog.com/products/diagramnet/ for details. 
    Posted to Announcements (Forum) by bobdupuy on November 27, 2008
  • Calling WCF service asynchronously from ASP.NET

    I was recently asked how to call WCF Service asynchronously from ASP.NET. Here's my sample code: 1) WCF Service Library Implementationnamespace WcfServiceLibrary1 { [ServiceContract] public interface ISampleService { [OperationContract] string SayHelloWorld(); } } namespace ...
    Posted to Joteke's Blog (Weblog) by joteke on October 26, 2008
1 2 3 4 5 Next > ... Last ยป