IC窗口
community.icburner.com
Sign in
|
Join
|
Help
首页
精华文章
媒体
问答
维基百科
圈子
精华
VS2010学习
»
All Tags
»
C#
(
RSS
)
Browse by Tags
VS2010学习
Home
Syndication
RSS for Posts
Atom
Email Notifications
Go
Recent Posts
Automagic Time Localization
BigInt - Multiprecision Integers
Validating with Lambda Expressions
Tags
C#
DDD
EF4
Entity Framework
Entity Framework 4.0
Entity Framework Feature CTP1 for .NET 4.0
Entity Framework v2
IoC
jQuery
Kigg
Kigg系列文章
LINQ to Entities
LINQ to SQL
MVC
MVC2
NerdDinner
Oxite
POCO
T4
TDD
Test
Tip
Unity
VS2010
WPF
View more
Archives
December 2009 (8)
November 2009 (1)
October 2009 (18)
September 2009 (4)
August 2009 (24)
July 2009 (70)
June 2009 (180)
jQuery
Automagic Time Localization
One of the most often-overlooked and easy to fix things encountered when developing a hosted software application is the management of local time. First and foremost, you should be storing timestamps in your database in UTC. I don’t care if your users...
Published
2009/7/19 0:56
by
革命
Filed under:
C#
,
jQuery
BigInt - Multiprecision Integers
It's been done to death, but I think every developer should write one - a class for multiprecision integers (i.e. integers larger than one machine word). I have to say, it was harder than I expected. A special welcome to those who are...
Published
2009/7/3 11:13
by
革命
Filed under:
C#
Validating with Lambda Expressions
I’ve recently been working on a small library for doing validation with lambda expressions. It allows you to run a set of validators against an object, then collects the validation errors in a list. Here are some examples: var person = new Person...
Published
2009/6/30 17:49
by
革命
Filed under:
C#