Posted on December 27, 2007 by Balaji Ramesh
Well, I was working on one of the projects which required the use of the FIFO and LIFO data structures. Since the project was based on .NET, I had no trouble at all implementing the same.
The System.Collections namespace provides us with the classes required to implement FIFO and LIFO.
Declare the queue:
Queue myQ = new Queue(5);
To [...]
Filed under: .net, Code, Microsoft, Technical, Visual Studio | Tagged: FIFO, LIFO, Queue, Stack | 3 Comments »
Posted on September 4, 2007 by Balaji Ramesh
I have been giving the Visual Studio 2008 Beta 2 a whirl and the first thing I wanted to do was to open my existing project targeted for .Net Framework 2.0 in Orcas beta. The good thing about the conversion wizard is unlike the the 2005 conversion wizard which converts all projects to use the [...]
Filed under: Microsoft, Technical, Visual Studio | 4 Comments »
Posted on August 14, 2007 by Balaji Ramesh
Microsoft has released the Visual Studio 2008 beta 2 (formerly code named ‘Orcas’). Click here to download and give it a whirl!
Filed under: Microsoft, Technical, Visual Studio | Leave a Comment »
Posted on June 21, 2007 by Balaji Ramesh
When trying to attach style sheets in Visual Studio I was wondering if there is an easier way to do so rather than typing the entire markup in the HTML view.
Check this out…
- Open up the Designer view of the page you want to apply the style
- From the Solution Explorer just drag and drop [...]
Filed under: CSS, HTML, Microsoft, Technical, Visual Studio | Leave a Comment »