开发者

Is there a C# "Library Of Objects" website?

开发者 https://www.devze.com 2023-01-22 15:46 出处:网络
If I need a regular expression, I can go to regexlib.com and with a bit of luck, find a regular expression for my requirement.

If I need a regular expression, I can go to regexlib.com and with a bit of luck, find a regular expression for my requirement.

If I need a class for, say "Employee", is there a centralised resource out there where I can just grab the code for a sample Employee object? I say Employee here as a simple example; another example might be "Manufacturer", "Car" and "Car Model".

It's a deceptively difficult thing to search for as all the keywords I could think of are in use in C# and OOP already.

Just wondering as I was about to roll a "Phone" object and thought that sur开发者_开发技巧ely there must be one already out there for something as mundane as that. If there is, I don't see it.

Cheers,

Richard


You could go to Google.com and search for "<class name>.cs" to see what implementations are out there.

  • (Example) http://code.google.com/query/#q=Employee.cs
0

精彩评论

暂无评论...
验证码 换一张
取 消