Linkedin,WordPress, Twitter and Facebook


Imagine that you have completed a degree course and waiting for a job. Spending alone at home. Don’t waste your time. You can spend your spare moments by visiting various websites which will ultimately expose you to the outside world.

Linkedin

It is a popular site to record your professional achievements, awards and projects. You will get an unique link like www.linkedin.com/in/anandnswamy which you can provide to potential employers. You can include your past and current employment positions along with other achievements and recongnitions.

WordPress

You can now create blogs for free using WordPress hosted platform. This means that you need not have [...] Continue Reading…

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 30, 2009 at 10:22 am

Categories: Channels, Internet, Latest   Tags: briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, facebook, linkedin, multiform application in C#.Net, social networking, twitter, wordpress

Even Faster Web Sites

Sebastopol, CA – Performance is critical to the success of any web site, and yet today’s web applications push browsers to their limits with increasing amounts of rich content and heavy use of Ajax. In his newest book, Even Faster Web Sites, (O’Reilly, US $34.99), Steve Souders, web performance evangelist at Google and former Chief Performance Yahoo!, provides valuable techniques to help you optimize your site’s performance. Souders’ previous book, the bestselling High Performance Web Sites, shocked the web development world by revealing that 80% of the time it takes for a web page to load is [...] Continue Reading…

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 25, 2009 at 6:17 am

Categories: Latest, News, Press Releases   Tags: optimization, oreilly, websites

How do I build a C# application using Command Line Compiler?

Microsoft’s .NET SDK ships with a command line compiler called csc.exe. It can be executed from within the DOS prompt. In this article, I will show you how to build a simple C# program using this compiler with Notepad as the editor. Open your editor and enter the code as given in listing 1 Listing 1 001: // HelloWorld.cs
002: // ————-
003: using System;
004: class HelloWorld
005: {
006: public static void Main()
007: {
008: Console.WriteLine("Hello World");
009: }
010: }

The line numbers are given only for the sake of explanation and does not form part of the [...] Continue Reading…

3 comments - What do you think?
Posted by Anand Narayanaswamy - June 22, 2009 at 7:57 am

Categories: C#, Channels, Latest   Tags: briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, csharp, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, multiform application in C#.Net, visual studio, Visual Studio 2005, visual studio 2008, visual studio 2010

What are the different editors that are available for C# programming?

Once you have installed a C# compiler, the next process is to choose an editor to enter source codes. There are different types of editors such as Notepad and Visual C#. In addition to these two, many third party vendors have also developed editors for programming with C#. This FAQ briefly discusses each one of these editors. Notepad is a commonly used editor among many programmers. It comes with Windows and it is very easy to use as well. But there are lots of disadvantages with this editor like it doesn’t supports syntax coloring and [...] Continue Reading…

3 comments - What do you think?
Posted by Anand Narayanaswamy - June 12, 2009 at 12:29 am

Categories: C#, Channels, Latest   Tags: briefly about c# and c# tools, c sharp compiler download, C#, c# compilers, C# keywords classified, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, intellisense, microsoft, msdn library, multiform application in C#.Net, visual studio, Visual Studio 2005, visual studio 2008, visual studio 2010

The Art of Concurrency

If you’re looking to take full advantage of multi-core processors with concurrent programming, The Art of Concurrency (O’Reilly, US $44.99), by Clay Breshears, provides the knowledge and hands-on experience you need. The book is one of the few resources that focuses on implementing algorithms in the shared-memory model of multicore processors, rather than just theoretical models or distributed-memory architectures. The book provides detailed explanations and usable samples to help you transform algorithms from serial to parallel code, along with advice and analysis for avoiding mistakes that programmers typically make when first attempting these computations. Written by a [...] Continue Reading…

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 3, 2009 at 7:15 am

Categories: Latest, Press Releases   Tags: briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, clay Breshears, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, intel, multiform application in C#.Net, oreilly, processor

How do I begin programming with C#?

First of all, you need to install a C# compiler. You can either use a command line compiler available from Microsoft or third party compiler kit developed by Mono. Microsoft’s C# compiler is widely used by many developers as the Mono compiler kit is not yet fully developed. In addition to this you can also build C# applications with Visual C# 2008, which is available with Visual Studio 2008. It is a robust development tool used for developing all kinds of C# applications. Is it necessary to install Visual Studio 2008 to build C# applications? [...] Continue Reading…

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 2, 2009 at 7:03 am

Categories: C#, Channels, Latest   Tags: briefly about c# and c# tools, c sharp compiler download, C#, c# compilers, C# keywords classified, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, microsoft, multiform application in C#.Net, visual studio, visual studio 2008

Working with Multiple Forms using Visual C# 2008

You will need to work with more than one form while developing Windows based applications in C#. In this code snippet, Anand examines the steps required using Visual C# 2008.

Read more...

1 comment - What do you think?
Posted by Anand Narayanaswamy - May 25, 2009 at 7:40 am

Categories: Latest, Programming   Tags: .tif silverlight visual basic, briefly about c# and c# tools, c sharp compiler download, C#, c# compilers, C# keywords classified, csharp whiteboard, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, google scada imaging, multiform application in C#.Net, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010, visual c#, visual studio 2008, windows forms

What are Identifiers and Keywords?

Identifiers are the names given to classes, methods, variables and interfaces. It must be a whole word and starts with either an alphabet or an underscore. They are case sensitive. The main point you should bear in mind is that the names should not clash with C# keywords. Some programmers use @ prefix as a first character while declaring identifiers to avoid clash with a keyword but it is not a recommended practice. Following names are valid identifiers in C# 1. Hello 2. hello 3. H_ello [...] Continue Reading…

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - May 23, 2009 at 1:41 am

Categories: C#, Channels, Latest   Tags: .net framework, C#, identifiers, keywords, microsoft

What are the requirements for developing a C# application?

The first major requirement is that you should require a system running either Windows 2000 Professional or Windows XP Professional or Windows 2003/2008 Server. Windows XP Home Edition doesn’t provide support for .NET. It is not recommended to work with C# on Windows 98 systems as it is not compatible for developing server side applications or ASP.NET. Microsoft Vista Ultimate completely supports .NET Framework. The recently released release candidate of Windows 7 also provide support for .NET Framework. Linux also supports C# with the help of Mono C# compiler Kit. Secondly, you should install .NET Framework Software Development [...] Continue Reading…

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - May 18, 2009 at 12:47 am

Categories: C#, Channels, Latest   Tags: .NET, briefly about c# and c# tools, c sharp compiler download, C#, c# compilers, C# keywords classified, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, mailmergelib samples, multiform application in C#.Net, visual studio, windows

What are Namespaces?

As I explained in a previous FAQ, namespaces are placed at the top of the .NET hierarchy. Namespaces are nothing but group of classes or types or assemblies. Each of these classes contains lot of methods. Basically, namespaces are treated as containers for all classes and are classified into several categories, based on its functionalities. For example, if you need to work with databases, you have to call the namespace System.Data. Similarly, if you are working with files you have to call System.IO namespace. Namespaces in C# are similar to packages in Java, where we will use [...] Continue Reading…

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - May 15, 2009 at 1:14 am

Categories: C#, Channels, Latest   Tags: .net framework, briefly about c# and c# tools, c sharp compiler download, C#, c# compilers, C# keywords classified, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, multiform application in C#.Net, namespaces

« Previous PageNext Page »