|
|
Stories recently tagged with '.net3.5'
|
|
submitted by
dnksid
24 days, 20 hours ago
blog.somecreativity.com — The article tries to make an argument in favor of having support for introducing custom-logic with automatic properties in C#. It also shows a possible solution and asks for ideas for refinement. read more...
add a comment
|
category: C# | Views: 28
|
|
tags:
C#3, .net3.5, AutomaticProperties, C#, Lambda | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 24 days, 9 hours ago, submitted by
crpietschmann
25 days, 18 hours ago
pietschsoft.com — The first release of the new WPF Toolkit was released today. This toolkit includes a new Ribbon control as well as the following: new WPF DataGrid, DatePicker/Calendar, and VisualStateManger. The coolest feature of this Toolkit (IMO) is the new Ribbon control. In .NET 4.0 there will be a ribbon control baked in, but thanks to the WPF Toolkit we have access to utilize the new Ribbon control today in WPF with .NET 3.5 SP1! read more...
|
|
tags:
WPF, WPFToolkit, .net3.5, ribbon | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
JarrettV
1 month, 14 days ago
jvance.com — Learn to utilize the new expanded support for date times with proper time zone support in .NET 3.5. Create some HtmlHelper extension methods for writing out dates and use the jQuery Time Ago plugin to show them relative to the user's time zone. There is also a bonus method for formatting dates anyway you like through a lambda expression. read more...
add a comment
|
category: ASP.NET | Views: 26
|
|
tags:
3.5, .net3.5, MVC, ASP.NET, jQuery | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
henjon
1 month, 26 days ago
codeproject.com — Easy-to-use and high performance dynamic sorting library with support for most type of sequences, multiple fields, nested properties and SQL-like syntax, developed using System.Linq.Expression classes. Also discusses performance issues with sorting and how to improve performance of sorting in Windows Presentation Foundation collection views. read more...
add a comment
|
category: C# | Views: 25
|
|
tags:
LINQ, Sorting, WPF, .Net, .net3.5 | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
xtremebiz
3 months, 10 days ago
codeforeternity.com — We can use the ElementAt extension method of LINQ to return the element at a specified index (zero based) in a sequence. However the ElementAt extension method would throw the System.ArguementOutOfRangeException when the specified index is a negative value or not less than the size of the sequence. In such a scenario, we can use the ElementAtOrDefault extenion method which would return the default value of a type instead of throwing the System.ArguementOutOfRangeException.
Read this article for code example (both in C# and VB.NET) with comments read more...
add a comment
|
category: C# | Views: 16
|
|
tags:
3.5, .net3.5, VB.NET, C#, LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 12 days ago, submitted by
johnrummell
3 months, 12 days ago
microsoft.com — It's finally here! I haven't seen an official announcement yet, but I did a search for "Visual Studio 2008 Service Pack 1" on Microsoft's Download Center and found the following downloads added today:
Microsoft Visual Studio 2008 Service Pack 1 (exe)
http://www.microsoft.com/downloads/details.aspx?FamilyID=fbee1648-7106-44a7-9649-6d9f6d58056e&DisplayLang=en
Microsoft Visual Studio 2008 Service Pack 1 (iso)
http://www.microsoft.com/downloads/details.aspx?FamilyID=27673c47-b3b5-4c67-bd99-84e525b5ce61&DisplayLang=en read more...
6 comments
|
category: Visual Studio | Views: 727
|
|
tags:
.net3.5, VisualStudio2008, VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 12 days ago, submitted by
johnrummell
3 months, 12 days ago
microsoft.com — It's finally here! I haven't seen an official announcement yet, but I did a search for "Visual Studio 2008 Service Pack 1" on Microsoft's Download Center and found the following downloads added today:
Microsoft Visual Studio 2008 Service Pack 1 (exe)
http://www.microsoft.com/downloads/details.aspx?FamilyID=fbee1648-7106-44a7-9649-6d9f6d58056e&DisplayLang=en
Microsoft Visual Studio 2008 Service Pack 1 (iso)
http://www.microsoft.com/downloads/details.aspx?FamilyID=27673c47-b3b5-4c67-bd99-84e525b5ce61&DisplayLang=en read more...
6 comments
|
category: Visual Studio | Views: 727
|
|
tags:
.net3.5, VisualStudio2008, VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
3 months, 15 days ago
pietschsoft.com — I'm currently installing SQL 2008 Developer Edition, and before the installation could proceed, it needed to install an update to the .NET Framework 3.5. What update does it need to install? Well, .NET 3.5 Service Pack 1 is the update it needs. Now as you can see from the below screeshot, it doesn't say anything about being Beta. I wonder?... I wouldn't think SQL 2008 RTM would install .NET 3.5 SP1 Beta... So, I could only assume that this is the .NET 3.5 SP1 RTM that it's installing. However, this is a presumptuous conclusion and I don't really have any facts to back this up. It does make you wonder though... read more...
add a comment
|
category: Database | Views: 12
|
|
tags:
.net3.5, sp1, Database, CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
vivekamar
4 months, 6 days ago
dotnetcurry.com — In this article, we will see how to create a Picture Album using the ListView control. We will explore the GroupTemplate of ListView and explore how we can group multiple images together in the ListView, thereby creating an album effect.
read more...
add a comment
|
category: ASP.NET | Views: 81
|
|
tags:
dotnetcurry, picture, Album, ASP.NET, ListView | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 6 days ago, submitted by
crpietschmann
4 months, 7 days ago
pietschsoft.com — Extension Methods are one of the coolest features that have been added in .NET 3.5. I've heard arguments that there is no reason to use them, and the only reason Microsoft added them is to enable the ability to buid LINQ. Well, I do not entirely agree with that statement; in fact, I have found a cool way to use Extension Methods to enhance the System.Enum object since it cannot be inherited. Even though Enum can not be inherited, it can be extended using Extension Methods. Here's the code to an Extension Method that extends the LocalizationMarket Enum with the ToDescriptionString() method that returns the DescriptionAttributes value for the given enum value. read more...
3 comments
|
category: Tips & Tricks | Views: 430
|
|
tags:
.net3.5, C#, ExtensionMethods, Tips, Enum | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 6 days ago, submitted by
crpietschmann
4 months, 7 days ago
pietschsoft.com — Extension Methods are one of the coolest features that have been added in .NET 3.5. I've heard arguments that there is no reason to use them, and the only reason Microsoft added them is to enable the ability to buid LINQ. Well, I do not entirely agree with that statement; in fact, I have found a cool way to use Extension Methods to enhance the System.Enum object since it cannot be inherited. Even though Enum can not be inherited, it can be extended using Extension Methods. Here's the code to an Extension Method that extends the LocalizationMarket Enum with the ToDescriptionString() method that returns the DescriptionAttributes value for the given enum value. read more...
3 comments
|
category: Tips & Tricks | Views: 430
|
|
tags:
ExtensionMethods, C#, .net3.5, Tips, Enum | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
dotnetfunda
4 months, 8 days ago
dotnetfunda.com — ListView control is a new control added into ASP.NET 3.5. It enables you to display data in a format specified by you using templates and styles. It is useful for data in any repeating structure just like DataList and Repeater controls. However, unlike those controls ListView control enable you to edit, insert, delete, sort, paginate data without any extra effort. read more...
add a comment
|
category: ASP.NET | Views: 50
|
|
tags:
.net3.5, 3.5, ASP.NET, ListView | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 3 days ago, submitted by
oazabir
4 months, 8 days ago
msmvps.com — A new release of Dropthings, open source ASP.NET 3.5 AJAX portal. Features many performance and scalability techniques and a new design.
Showcases:
- 10 ASP.NET Performance and Scalability Secrets.
- Fast ASP.NET page rendering by deferred script loading.
- Load large amount of Javascripts in batch and thus load AJAX sites a lot faster.
- Fast Streaming AJAX proxy that solves double downloading problems and continuously streams content from external domain.
- Making best use of cache for high performance website.
- On-demand UI loading on AJAX websites.
read more...
add a comment
|
category: AJAX | Views: 381
|
|
tags:
AJAX, Portal, 3.5, OpenSource, .net3.5 | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|