pecha

Stories kicked by pecha

How to determine whether a property or a method is more appropriate(dotnettipoftheday.org)

submitted by manovichmanovich(755) 4 years, 7 months ago

Guidelines for choosing between implementing a class member as a property or a method. read more...

6 comments |category: |Views: 2

tags: another

How to resolve relative url's without ResolveUrl(dotnettipoftheday.org)

submitted by antibugsantibugs(215) 4 years, 7 months ago

string absoluteUrl = VirtualPathUtility.ToAbsolute(relativeUrl); read more...

2 comments |category: |Views: 209

tags: another

Speed up Visual Studio 2005(dotnettipoftheday.org)

submitted by ferrymulyonoferrymulyono(395) 4 years, 7 months ago

Nice tricks to speed up Visual Studio 2005 read more...

add a comment |category: |Views: 144

tags: another

Validate integer value before casting it to an Enum type(dotnettipoftheday.org)

submitted by manovichmanovich(755) 4 years, 7 months ago

There is one thing you should watch out for when using enumerations. You can cast any integer to an Enum type and you will not get an exception message. read more...

add a comment |category: |Views: 17

tags: another

The C# ?? Operator(dotnettipoftheday.org)

submitted by superghostsuperghost(2260) 4 years, 8 months ago

The C# ?? Operator read more...

8 comments |category: |Views: 11

tags: another

How to perform DateTime calculations in a right way(dotnettipoftheday.org)

submitted by SirkoSirko(105) 4 years, 8 months ago

When coding, be careful if you need to perform DateTime calculations (add/subtract) on values representing time zones that practice daylight savings time. read more...

2 comments |category: |Views: 12

tags: another

Use DebuggerDisplay attribute for Easier Debugging(dotnettipoftheday.org)

submitted by manovichmanovich(755) 4 years, 8 months ago

Did you know that you can appply DebuggerDisplay attribute to a class or member to determine how it is displayed in the watch window. It's quick, it's easy, and it really works! read more...

add a comment |category: |Views: 65

tags: another

Tips: Using Strong Typed DataSets with Web Services(keithelder.net)

submitted by TheElderTheElder(490) 5 years, 3 months ago

The articles covers several tips to increase performance when using datasets with web services. read more...

add a comment |category: |Views: 15

tags: another