dot net tips, DotNet tips, .Net Tips,Dot Net tips and tricks,Dot Net Solutions, OOPS Concept in C#,SQL Server, LinQ, Ajax, Java script, JQuery, Server Error details, daily .net tips and tricks , DotNet Interview Questions.
To add a team project to Team Explorer
To add a team project to Team Explorer
- On the File menu, point to Open, and then click Team Project.
- In the Connect to Team Foundation Server dialog box, use the drop-down list to select a valid Team Foundation Server.
- Under Team projects, select the team projects from the list that you want to add to Team Explorer and then click OK.
The team project you selected appears under the Team Foundation Server node.
Core 2 duo VS Core i3, Which is better?
core i3 is much faster, better than core2Duo. The reasons are explained below. Also check out the source link to see how both the processors performed in performance tests. That will give you a clear idea. Here is a detailed explanation.
Like the core 2 duo processors, the new core i3 line of processors, have two cores with many other technological enhancements including an integrated GPU (Graphic Processing Unit). The clocking frequency of the core i3 series of processors ranges from 2.26 GHz to 3.06 GHz. Each processor is endowed with the new line of advanced technologies including Intel developed hyperthreading, Intel virtualization and smart cache technology which makes these chips faster than core 2 duo processors. This is the most important point in the core i3 vs core 2 duo comparison.
The Intel codename for core i3 architecture is Clarkdale. They are based on the Westmere architecture with 32 nm fabrication and a direct media interface (DMI) bus. The socket type used for core i3 processors is LGA 1156 and the RAM type is DDR3. They support mother boards with the following types of chipsets- H55, P55, H57 and Q57.
Let us have a look at the latter processors in the core i3 vs core 2 duo comparison. Core 2 Duo processors come in three types of architectures, codenamed as Conroe, Wolfdale and Allendale. With 65 nm and 45 nm fabrications they are a tad slower and less power efficient than the 32 nm based core i3 processors. The socket used for core 2 duo processors is LGA 775 and they come with a FSB bus. The FSB bus is a lot slower in operation than the DMI bus in core i3 processors.
Coupled with the fact that the i3 processors have a L2 cache size of 2 x 256 kb and a L3 cache size of 4MB, with hyperthreading and smart cache enabled, core 2 duo processors are indeed slower. On top of that, DDR3 RAM compatibility in core i3 processors, compared to DDR2 compatibility of core 2 duo processors makes them even more faster. The price range of Intel core i3 is $100 to $133, which makes them top options in the entry level market.
Core i3 Vs Core 2 Duo: Performance
The technical specifications have made it clearly indicated that Intel core i3 beats its predecessor, core 2 duo in almost all departments. This is but natural as they were indeed designed to replace them. Be it processing speed, multitasking or graphic output, opting for core i3 processors is the logical choice to make!
Hope the core i3 vs core 2 duo processor comparison provided in this article has made it easier for you to choose the right processor for your personal desktop computer or laptop computer. Going for a more advanced line of processors is always beneficial in the long run. You should also check out the Intel core i5 and core i7 processors before going ahead as they offer far more computing power and speed, compared to the entry level core i3 or core 2 duo.
Like the core 2 duo processors, the new core i3 line of processors, have two cores with many other technological enhancements including an integrated GPU (Graphic Processing Unit). The clocking frequency of the core i3 series of processors ranges from 2.26 GHz to 3.06 GHz. Each processor is endowed with the new line of advanced technologies including Intel developed hyperthreading, Intel virtualization and smart cache technology which makes these chips faster than core 2 duo processors. This is the most important point in the core i3 vs core 2 duo comparison.
The Intel codename for core i3 architecture is Clarkdale. They are based on the Westmere architecture with 32 nm fabrication and a direct media interface (DMI) bus. The socket type used for core i3 processors is LGA 1156 and the RAM type is DDR3. They support mother boards with the following types of chipsets- H55, P55, H57 and Q57.
Let us have a look at the latter processors in the core i3 vs core 2 duo comparison. Core 2 Duo processors come in three types of architectures, codenamed as Conroe, Wolfdale and Allendale. With 65 nm and 45 nm fabrications they are a tad slower and less power efficient than the 32 nm based core i3 processors. The socket used for core 2 duo processors is LGA 775 and they come with a FSB bus. The FSB bus is a lot slower in operation than the DMI bus in core i3 processors.
Coupled with the fact that the i3 processors have a L2 cache size of 2 x 256 kb and a L3 cache size of 4MB, with hyperthreading and smart cache enabled, core 2 duo processors are indeed slower. On top of that, DDR3 RAM compatibility in core i3 processors, compared to DDR2 compatibility of core 2 duo processors makes them even more faster. The price range of Intel core i3 is $100 to $133, which makes them top options in the entry level market.
Core i3 Vs Core 2 Duo: Performance
The technical specifications have made it clearly indicated that Intel core i3 beats its predecessor, core 2 duo in almost all departments. This is but natural as they were indeed designed to replace them. Be it processing speed, multitasking or graphic output, opting for core i3 processors is the logical choice to make!
Hope the core i3 vs core 2 duo processor comparison provided in this article has made it easier for you to choose the right processor for your personal desktop computer or laptop computer. Going for a more advanced line of processors is always beneficial in the long run. You should also check out the Intel core i5 and core i7 processors before going ahead as they offer far more computing power and speed, compared to the entry level core i3 or core 2 duo.
Delegate
A delegate is a type that references a method. Once a delegate is assigned a method, it behaves exactly like that method. The delegate method can be used like any other method, with parameters and a return value
Delegates have the following properties:
Delegates have the following properties:
- Delegates are similar to C++ function pointers, but are type safe.
- Delegates allow methods to be passed as parameters.
- Delegates can be used to define callback methods.
- Delegates can be chained together; for example, multiple methods can be called on a single event.
Turn On Visual Studio 2005/2008/2010 Line Numbering
Text Editor Settings
Once all of the settings are visible, expand the Text Editor branch of the tree. Here you can see a list of all of the languages for which settings may be modified. We will enable line numbering for C# code editing. Expand the C# node of the tree and select the General section to reveal the settings. To enable source code line numbering, tick the appropriate checkbox. Click OK to accept the setting and the line numbers will appear.Find number of days in a given month
This user defined functions return the number of days in a given month.
ALTER FUNCTION GetDaysCountInMonth(
@Date DATETIME )
RETURNS INT
AS
BEGIN
DECLARE @count INT
SET @count = CASE
WHEN DATEPART(MM,@Date) IN (1, 3, 5, 7, 8, 10, 12) THEN 31
WHEN DATEPART(MM,@Date) IN (4, 6, 9, 11) THEN 30
ELSE
CASE WHEN (DATEPART(YY,@Date) % 4 = 0
AND
DATEPART(YY,@Date) % 100 != 0)
OR
((DATEPART(YY,@Date)) % 400 = 0)
THEN 29
ELSE 28
END
END
RETURN @count
END
GO
--Result
SELECT dbo.GetDaysCountInMonth(GETDATE()) COUNT
SELECT dbo.GetDaysCountInMonth('2000-02-12')
COUNT--Leap year
SELECT dbo.GetDaysCountInMonth('2100-02-12') COUNT
Subscribe to:
Posts (Atom)