Wednesday, August 6, 2008

Coding Snippets Used In Almost All Languages

Here i had tried to publish some logic's that helps us in understanding the vast & robust world of coding. As we go ahead with our programming approaches we tend to forget our basics so this post will help us in reviewing the basics of the coding standards and provides us some code snippets as a help.




  • Swapping 2 Variables without using a third one.(Coding Std: Javascript)

  • //code snippet as an example
    var a=1;
    var b=6;
    a=a+b; // i.e. a=7
    b=a-b; // i.e. b=1
    a=a-b; // i.e. a=6
    document.write("a="+a +"
    b="+b) ;

    Tuesday, August 5, 2008

    Extensions Summary.

    Help Files


  • chm :Compiled Help File.

  • hhp :Help File Project.

  • hhc :Content File.

  • hhk :Index File.




  • .Net


  • config :configuration File.

  • cs :C# code file.

  • vb :VB.Net code file.