Browse Blog Posts by Tags

Showing related tags and posts for the Blogs application. See all tags in the site
  • .NET 3.5: Implicitly Typed Local Variables

    In this post I will show very short example which introduces the powerful feature of .NET 3.5 called Implicitly Typed Local Variables . Sometimes there are types in the framework which are generated on demand during runtime. They are used in always in the local scope and have no name. To illustrate this...
    Posted to Damir Dobric Posts by Damir Dobric on 05-28-2007
    Filed under: Filed under:
  • .NET 3.5: Type Initializers sample

    Based on few very simple examples, I will describe in this post some new features of .NET 3.5, which are fundamentals of the LINQ and everything beyond. Imagine you have a class Customer with two fields: public class Customer { private string m_Name; public string Name { get { return m_Name; } set {...
    Posted to Damir Dobric Posts by Damir Dobric on 05-28-2007
    Filed under: Filed under:
  • Extending .NET 2.0 Configuration

    .NET 2.0 offers very powerful configuration mechanism, which allows you to build you custom configuration sections, elements etc. Unfortunately, many details are very poor documented. In this post I will shortly show some interesting details. For example, imagine you want to build your own section, which...
    Posted to Damir Dobric Posts by Damir Dobric on 02-07-2007
    Filed under: Filed under:
  • Execute SQL Parameterized Stored Procedures by Using the ODBC .NET Provider

    By using of ADO.NET you can very easy execute stored procedures which expect some parameters. The interesting thing at this point is that the command syntax by executing of the same stored procedure by using of ODBC driver is different. This sounds hard, but the good thing is that the difference is relative...
    Posted to Damir Dobric Posts by Damir Dobric on 02-03-2007
    Filed under: Filed under:
  • Removing of nodes in XmlDocument

    There are many business cases which requires you look for some specific data in some collection and finally to remove them from the collection. For example, consider following code: public static void RemoveItems(){ List < string > items = new List < string >(); items.Add( "Item1"...
    Posted to Damir Dobric Posts by Damir Dobric on 12-12-2006
    Filed under: Filed under:
  • .NET 2.0 Custom configuration

    .NET 2.0 provides a slightly different configuration concept than the previous version .NET 1.1. All new features con be found here . In this post I do not want to provide the description of this concept. More over, I will just show one more featured working example. This example shows how to implement...
    Posted to Damir Dobric Posts by Damir Dobric on 11-14-2006
    Filed under: Filed under:
  • Conneting to SAP: SAP Connection string

    By connecting to SAP from BizTalk SAP Adapter I was a little confused by choosing of right parameters like: client, system, r3 name, message server etc. This was a reason to dig deeper in the SAPManagementAdapter namespace. This namespace contains classes responsible for establishing of connection to...
    Posted to Damir Dobric Posts by Damir Dobric on 09-13-2006
    Filed under: Filed under:
  • DAENET's WCF white paper

    I have posted the WCF material evaluated during Indigo Beta Program in January 2005. It is an article describing many documented and some undocumented features of WCF.
    Posted to Damir Dobric Posts by Damir Dobric on 07-04-2006
    Filed under: Filed under: ,
  • Securing WCF (Windows Communication Foundation) transport wit SSL

    Securing WCF (Windows Communication Foundation) transport WCF provides mechanism of securing of communication between client and WCF-service by using of message and/or transport mode. However, when transport mode ( basic transport security ) is used, using of X509 certificate is required. Before SSL...
    Posted to Damir Dobric Posts by Damir Dobric on 06-29-2006
    Filed under: Filed under: ,
  • .NET Framwork tools at once

    This post contains the list of all .NET framework tools, which are delivered with the framework. http://msdn2.microsoft.com/en-us/library/ms299153(vs.80).aspx SDK Command Prompt Assembly Linker (Al.exe) ASP.NET Compilation Tool (Aspnet_compiler.exe) ASP.NET Browser Registration Tool (Aspnet_regbrowsers...
    Posted to Damir Dobric Posts by Damir Dobric on 05-21-2006
    Filed under: Filed under:
  • VSTO Data Islands allows finer architecture of "Information Worker" applications

    By using of office documents, it is often required to prepare some data for document before the user opens it. This scenario is typical for web application. User goes online and downloads the document. However, immediately before downloading the server should append some data to document, so the user...
    Posted to Damir Dobric Posts by Damir Dobric on 04-13-2006
    Filed under: Filed under:
  • Generic Factory: New feature or misunderstanding?!

    .NET is a platform which integrates a huge number of features experienced in the last 20 years of software development. There are many developers, which find all this new and exciting. For example, object oriented development. An experienced VB-developer does not need much time to learn many of important...
    Posted to Damir Dobric Posts by Damir Dobric on 03-14-2006
    Filed under: Filed under:
  • Performance of "string concatenation"

    Every developer knows that string concatenation is something you should avoid when performance is required. In such cases StringBuilder should be used instead or sometimes even String.Format. However, this is not always true. Following example shows that there are common situations which do not match...
    Posted to Damir Dobric Posts by Damir Dobric on 03-08-2006
    Filed under: Filed under:
  • Moving of the schema form Windows Forms 2.0 application to ASP.NET 2.0

    Moving of the schema form Windows Forms 2.0 application to ASP.NET 2.0 Problem Description Assume you created the project based on project template Windows Forms application. Assume also that this project contains one schema (Dataset). The dataset in ASP.NET 2.0 application contains by default the description...
    Posted to Damir Dobric Posts by Damir Dobric on 03-03-2006
    Filed under: Filed under:
Page 7 of 7 (104 items) « First ... < Previous 3 4 5 6 7
developers.de is a .Net Community Blog powered by daenet GmbH.