Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What reusable code should every developer have in their toolbox? [closed]

I'm trying to build up a library of reusable code to use from project to project. As I write code snippets and components, I'm trying to decide which libraries I will get the most use out of long term VS will I really use this again?

What code or components do you reuse that should every developer have?

I'm primarily interested in .net web and winforms.

like image 931
Bill Martin Avatar asked Jan 23 '09 22:01

Bill Martin


1 Answers

Regular Expressions for verifying

  • Valid Date
  • Valid Number
  • Between two Dates
  • Zip
  • Postal
  • Age
  • Number Range

Depending on the language as some have these features already

like image 51
cgreeno Avatar answered Nov 16 '22 00:11

cgreeno