473,387 Members | 1,834 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Source code sites?

I am looking for .Net 2.0 VB, C or C# source code (even advanced 1.1 code is
OK). I find that I learn more, faster by tweaking other people's code than
by simply reading book after book on the subject.

Any links that you could provide (the more advanced the better) would be
sincerely appreciated.

Thanks!

Dec 1 '05 #1
11 1365
Microsoft has went to great pains to send code with the Visual Studio
package that you should really take the time to look at. I would also
recommend getting their book on C#.net if you really interested in serious
programming. If you're familiar with programming and want to cut to the
chase...they've done a really nice job of printing a text that doesn't
attempt to re-teach you the fundamentals of programming. The books does a
great job of comparing old C++ to the changes in C#. I know it might be
hard to believe but I give MS a thumbs up on this one...great job MS with
your added examples!

Good Luck,

Chris

--
Securing your systems is much like fighting off disease -- as long as you
maintain basic hygiene, you're likely to be okay, but you'll never be
invulnerable.

Steve Shah - Unix Systems Network Administrator
"Jim Hubbard" <Ji*@notmyaddress.com> wrote in message
news:gJ*******************@bignews7.bellsouth.net. ..
I am looking for .Net 2.0 VB, C or C# source code (even advanced 1.1 code
is OK). I find that I learn more, faster by tweaking other people's code
than by simply reading book after book on the subject.

Any links that you could provide (the more advanced the better) would be
sincerely appreciated.

Thanks!

Dec 1 '05 #2
Hello Jim ,

For advanced and really good code i find that DEVX is a valuable website
for me , also the VB2themax website is one of my favorites ( the website of
Francesco Balena in contradiction to its name it also has C# code )

http://www.devx.com/

http://www.vb2themax.com/
regards

Michel Posseth [MCP]

"Jim Hubbard" <Ji*@notmyaddress.com> schreef in bericht
news:gJ*******************@bignews7.bellsouth.net. ..
I am looking for .Net 2.0 VB, C or C# source code (even advanced 1.1 code
is OK). I find that I learn more, faster by tweaking other people's code
than by simply reading book after book on the subject.

Any links that you could provide (the more advanced the better) would be
sincerely appreciated.

Thanks!

Dec 1 '05 #3
Which M$ C#.net did you have in mind? Could you give the title? Or
even better, the ISBN?

Chris

Chris Springer wrote:
Microsoft has went to great pains to send code with the Visual Studio
package that you should really take the time to look at. I would also
recommend getting their book on C#.net if you really interested in serious
programming. If you're familiar with programming and want to cut to the
chase...they've done a really nice job of printing a text that doesn't
attempt to re-teach you the fundamentals of programming. The books does a
great job of comparing old C++ to the changes in C#. I know it might be
hard to believe but I give MS a thumbs up on this one...great job MS with
your added examples!

Good Luck,

Chris

Dec 1 '05 #4
The title is "Microsoft Visual C#.net Step by Step"

You'll have to be careful because this ISBN is for the 2003 version...not
for the 2005 version. They have a 2005 version in print...they're both
$39.99. Here is the ISBN...

0-7356-1909-3

Good luck!

Chris

--
Securing your systems is much like fighting off disease -- as long as you
maintain basic hygiene, you're likely to be okay, but you'll never be
invulnerable.

Steve Shah - Unix Systems Network Administrator
"Chris Bootland" <"bootland at cyberone dot com dot au"> wrote in message
news:43**********************@ken-reader.news.telstra.net...
Which M$ C#.net did you have in mind? Could you give the title? Or even
better, the ISBN?

Chris

Chris Springer wrote:
Microsoft has went to great pains to send code with the Visual Studio
package that you should really take the time to look at. I would also
recommend getting their book on C#.net if you really interested in
serious programming. If you're familiar with programming and want to cut
to the chase...they've done a really nice job of printing a text that
doesn't attempt to re-teach you the fundamentals of programming. The
books does a great job of comparing old C++ to the changes in C#. I know
it might be hard to believe but I give MS a thumbs up on this one...great
job MS with your added examples!

Good Luck,

Chris

Dec 1 '05 #5
Jim,

I use these samples.

http://msdn.microsoft.com/vstudio/do...s/default.aspx

The only problem with those is that the VBNet samples are often obviously
made by C# programmers, so you don't see methods like the CDate and there
are constructions like this "If (true) then"

However I thought that you are very well able to see that.

I hope this helps,

(Written from the VB language newsgroup)

Cor
Dec 1 '05 #6
I read very often: http://www.codeproject.com, may be it will help you.

Dec 1 '05 #7

Thanks for the links so far.......but does anyone have more advanced code?

I'm looking for code examples like mirror drivers in .Net or defragging in
..Net....that type of thing. Perhaps coding mirror drivers for a LAN remote
pc application cannot be done in .Net....but, I thought that .Net was
supposed to be the successor to C++. Am I wrong about that?

"Jim Hubbard" <Ji*@notmyaddress.com> wrote in message
news:gJ*******************@bignews7.bellsouth.net. ..
I am looking for .Net 2.0 VB, C or C# source code (even advanced 1.1 code
is OK). I find that I learn more, faster by tweaking other people's code
than by simply reading book after book on the subject.

Any links that you could provide (the more advanced the better) would be
sincerely appreciated.

Thanks!

Dec 1 '05 #8

"Jim Hubbard" <Ji*@notmyaddress.com> wrote in message
news:xl*****************@bignews2.bellsouth.net...

Thanks for the links so far.......but does anyone have more advanced code?

I'm looking for code examples like mirror drivers in .Net or defragging in
.Net....that type of thing. Perhaps coding mirror drivers for a LAN
remote pc application cannot be done in .Net....but, I thought that .Net
was supposed to be the successor to C++. Am I wrong about that?

"Jim Hubbard" <Ji*@notmyaddress.com> wrote in message
news:gJ*******************@bignews7.bellsouth.net. ..
I am looking for .Net 2.0 VB, C or C# source code (even advanced 1.1 code
is OK). I find that I learn more, faster by tweaking other people's code
than by simply reading book after book on the subject.

Any links that you could provide (the more advanced the better) would be
sincerely appreciated.

Thanks!



No .NET (a marketing term really) is not the successor of anything like a
programming language. C++ is a programming language and what you call .NET
covers a framework that can be used to build general purpose user
applications, running in top of the so called CLR (or CLI in Ecma parlance).
There are numerous (managed) programming languages that target the framework
like: C#, VB.NET, ME C++, JScript and C++/CLI to name a few. None of them
are however meant to replace C++, while the "managed" languages may have
several advantages over native C++, depending on the problem domain, a lot
of programming task can't (or shouldn't) be done using any of them. The
problem is not directly the language per se , it's more related to the
managed environment (the Common Language Runtime).
One of the programming domains for which you can't use .NET (any language)
are drivers (any kind), here the only supported language is C++ (or lower
;-)).
Other domains not targeted by .NET are high performance servers (aka.
Databases, mail servers), High performance desktop application (CAD/CAM,
Imaging etc...) kernel OS components, system libraries, runtime libraries
etc....
Note that C++ is part of the Visual Studio offering and VS2005 includes the
latest version supporting native C++ as well as C++CLI.

Willy.


Dec 1 '05 #9
So, learning C++ is not a waste of time then....

But, it looks like the learning curve is quite steep and I may be better off
hiring out this little project (making a .Net interface to the C++ mirror
drivers).

Thanks for the info!

"Willy Denoyette [MVP]" <wi*************@telenet.be> wrote in message
news:uM*************@TK2MSFTNGP10.phx.gbl...

"Jim Hubbard" <Ji*@notmyaddress.com> wrote in message
news:xl*****************@bignews2.bellsouth.net...

Thanks for the links so far.......but does anyone have more advanced
code?

I'm looking for code examples like mirror drivers in .Net or defragging
in .Net....that type of thing. Perhaps coding mirror drivers for a LAN
remote pc application cannot be done in .Net....but, I thought that .Net
was supposed to be the successor to C++. Am I wrong about that?

"Jim Hubbard" <Ji*@notmyaddress.com> wrote in message
news:gJ*******************@bignews7.bellsouth.net. ..
I am looking for .Net 2.0 VB, C or C# source code (even advanced 1.1 code
is OK). I find that I learn more, faster by tweaking other people's code
than by simply reading book after book on the subject.

Any links that you could provide (the more advanced the better) would be
sincerely appreciated.

Thanks!



No .NET (a marketing term really) is not the successor of anything like a
programming language. C++ is a programming language and what you call .NET
covers a framework that can be used to build general purpose user
applications, running in top of the so called CLR (or CLI in Ecma
parlance). There are numerous (managed) programming languages that target
the framework like: C#, VB.NET, ME C++, JScript and C++/CLI to name a few.
None of them are however meant to replace C++, while the "managed"
languages may have several advantages over native C++, depending on the
problem domain, a lot of programming task can't (or shouldn't) be done
using any of them. The problem is not directly the language per se , it's
more related to the managed environment (the Common Language Runtime).
One of the programming domains for which you can't use .NET (any language)
are drivers (any kind), here the only supported language is C++ (or lower
;-)).
Other domains not targeted by .NET are high performance servers (aka.
Databases, mail servers), High performance desktop application (CAD/CAM,
Imaging etc...) kernel OS components, system libraries, runtime libraries
etc....
Note that C++ is part of the Visual Studio offering and VS2005 includes
the latest version supporting native C++ as well as C++CLI.

Willy.

Dec 1 '05 #10
SourceForge.net - a variety of platforms, languages, etc. (have to search
for C#)
CodeProject.com - similar
GotDotNet.com - look at the workspaces

MSDN site also has code samples in a variety of their articles.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***********************************************
Think Outside the Box!
***********************************************
"Jim Hubbard" <Ji*@notmyaddress.com> wrote in message
news:gJ*******************@bignews7.bellsouth.net. ..
I am looking for .Net 2.0 VB, C or C# source code (even advanced 1.1 code
is OK). I find that I learn more, faster by tweaking other people's code
than by simply reading book after book on the subject.

Any links that you could provide (the more advanced the better) would be
sincerely appreciated.

Thanks!

Dec 1 '05 #11
I think the best source of learning .NET and C# is ROTOR(Shared Source
Common Language Infrastructure). The entire CLR(with some changes i'm
sure) source code for version 1.0 is included as well of most of 1.0
libraries. When learning C# it was helpful getting classes like
ArrayList and stepping through them. Anyway, you can get Shared Source
Common Language Infrastructure here
http://www.microsoft.com/downloads/d...displaylang=en

Dec 1 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Unigroup of New York | last post by:
Content-Type: multipart/mixed; boundary="------------C465DF38DCB38DD2AF7117E0" Lines: 327 Date: Tue, 15 Feb 2005 23:36:38 -0500 NNTP-Posting-Host: 24.46.113.251 X-Complaints-To: abuse@cv.net...
8
by: Michael Dekson | last post by:
Hello, Can I exe file made in Microsoft Visual C++ decompile into source code. If it is possibly please tell me how. Thanks
9
by: Michael Dekson | last post by:
Hello, Can I exe file made in Microsoft Visual C++ decompile into source code. If it is possibly please tell me how. Thanks
8
by: Steven T. Hatton | last post by:
There was recently some discussion of storing source code in databases. To some extent that is a rather common practice. CVS, for example, provides a means of storing source code in a database. ...
0
by: Michael C | last post by:
Hi all, Can you experienced Gurus point me in the direction of the best sites for source code? I've found a couple really nice ones (CodeProject, C# Help and of course MSDN), but I'd like to...
9
by: WRH | last post by:
Hello I am new to asp but I made some Jscript functions which work fine. The functions contain some strings used as a registration key for some apps. It is important that these strings not be...
3
by: eBob.com | last post by:
(Not that size matters, but ...) I have a program which is getting too big. So I'd like to split it into several source files. I know that I can create a ModuleX.vb source file which looks like...
5
by: colin | last post by:
Hi, Im looking for an open source http/web proxy server hopefully in c# there seems to be quite a few in python or java, but not come acros one in c# yet. is there anything around ? I wouldnt...
6
by: gayatri prasanna | last post by:
Hi, Is there any search engine which gives us information from which source the user has been redirected to our site.As per my requirement ,we have several sites in our application and would like...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.