Pages
-
Recent Posts
- Which Would You Rather Have: The Planet, Or A Patent?
- How Copyright Would Make The ‘Singularity’ Infringement If It Ever Arrived
- Network Analysis Reveals Apparent (And Legally Questionable) Attack On Torrent Networks
- Court Dumps Patent Lawsuit Against Tons Of Online Retailers
- Java: Jury Says Google Did Not Infringe / Comprehensive JVM Options List
Archives
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- December 2008
- November 2008
- October 2008
Meta
Category Archives: .NET
PHPHOST BLOG
Web Hosting Related Articles You May Need
.NET Framework 4 Reliability Update 1
Microsoft has released a Reliability Update 1 for the Microsoft .NET Framework 4 to fix some stability, reliability, and performance issues in the Microsoft .NET Framework 4.
Some of the 14 issues that are fixed are as follows:
If the locale is not In… Continue reading
Posted in .NET, Syndicated
Leave a comment
C#: Find Previous Month’s First and Last Day
Here’s a simple query that gives you the first and last day of the previous month.
static void Main(string[] args)
{
var yr = DateTime.Today.Year;
var mth = DateTime.Today.Month;
var firstDay = new DateTime(yr, mth, 1).AddMonths(-1);
var lastDay = n… Continue reading
Posted in .NET, C#, Syndicated
Leave a comment
C#: Find Previous Month’s First and Last Day
Here’s a simple query that gives you the first and last day of the previous month.
static void Main(string[] args)
{
var yr = DateTime.Today.Year;
var mth = DateTime.Today.Month;
var firstDay = new DateTime(yr, mth, 1).AddMonths(-1);
var lastDay = n… Continue reading
Posted in .NET, C#, Syndicated
Leave a comment
Visual Studio 2010 and .NET Framework 4 Training Kit–June 2011
Microsoft released the June update of VS 2010 and .NET Framework Training Kit. The Training Kit contains presentations, hands-on labs, and demos and is designed to get you up and running in no time with the following technologies including
C# 4
Visual… Continue reading
Posted in .NET, Free Learning, Syndicated
Leave a comment
Visual Studio 2010 and .NET Framework 4 Training Kit–June 2011
Microsoft released the June update of VS 2010 and .NET Framework Training Kit. The Training Kit contains presentations, hands-on labs, and demos and is designed to get you up and running in no time with the following technologies including
C# 4
Visual… Continue reading
Posted in .NET, Free Learning, Syndicated
Leave a comment
WCF 4.0 REST POX Service with Help Page
Representational State Transfer (REST) support was included in WCF 3.5. In WCF 4.0, this feature has been enhanced with Help page support. This facility was added as WCF REST allows direct call to OperationContracts, using HTTP protocol by the client a… Continue reading
Posted in .NET, C#, Syndicated
Leave a comment
WCF 4.0 REST POX Service with Help Page
Representational State Transfer (REST) support was included in WCF 3.5. In WCF 4.0, this feature has been enhanced with Help page support. This facility was added as WCF REST allows direct call to OperationContracts, using HTTP protocol by the client a… Continue reading
Posted in .NET, C#, Syndicated
Leave a comment
.NET – Start Asynchronous Parallel Task and Cancel Them Too
I was having a good discussion with a couple of friends about the support of parallel tasks in .NET. If you too are interested in the same, I have written a couple of articles that can give you an overview of the support for parallelism and concurrency… Continue reading
Posted in .NET, C#, Syndicated
Leave a comment
.NET – Start Asynchronous Parallel Task and Cancel Them Too
I was having a good discussion with a couple of friends about the support of parallel tasks in .NET. If you too are interested in the same, I have written a couple of articles that can give you an overview of the support for parallelism and concurrency… Continue reading
Posted in .NET, C#, Syndicated
Leave a comment
Custom Attributes in .NET
The .NET Framework contains extensibility mechanisms that lets you create your own custom attributes. In this post we will see how to implement a Custom Attribute and use it in our applications. To start with let’s create a Console application with… Continue reading
Posted in .NET, Syndicated
Leave a comment
LATEST NEWS
