有什么快速方法可以让我熟悉 C#、.NET 框架等?

发布于 2024-07-23 07:43:02 字数 263 浏览 6 评论 0原文

我刚刚大学毕业,大约一个月后将开始工作,我被要求熟悉 C++、C#、NT 服务和 Web 服务的 .NET 框架。

我希望得到有关如何在短时间内熟悉这些主题(书籍?互联网链接?)的建议。 我不希望在一个月内成为这方面的专家,但我也不想一无所知。 我已经了解 C++,并且我认为自己相当精通它,而且我了解 C# 的基础知识,尽管我没有经常使用它。 对于 C#,我确实拥有一本名为 O'Reilley Programming C# 的书。

谢谢!

I just graduated college and will be starting working in about a month and I was asked to familiarize myself with C++, C#, .NET framework for NT Services and web services.

I'd appreciate recommendations on how to familiarize myself with these topics (books? internet links?) in a short time span. I don't expect to be an expert on it in a month but I don't want to be clueless either. I already know C++ and I consider myself to be fairly proficient in it and I know the basics of C# even though I haven't used it all that much. For C# I do own a book called O'Reilley Programming C#.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

命硬 2024-07-30 07:43:02

我首先会下载 Microsoft 的 Visual Studio Express 产品。 你的奥莱利书是一本非常适合入门的书。

开始阅读博客和收听播客,开始熟悉 C# 周围的所有技术。 你会对你能学到的东西感到非常兴奋。 以下是一些更好的:

http://www.hanselminites.com/

http://www.dotnetrocks.com/

http://channel9.msdn.com/

http://weblogs. asp.net/scottgu/

http://weblogs.asp.net/

另外, MSDN 库是宝贵的资源。 您几乎总能在那里找到您需要的东西。 这是整个 .NET 框架的参考所在。

http://msdn.microsoft.com/en-us/library/default。 aspx

狩猎快乐!

I would start by pulling down Microsoft's Visual Studio Express products. Your O'Reilly book is a perfectly good book to start with.

Start reading blogs and listening to podcasts, to begin to familiarize yourself with all of the technologies out there that surround c#. You will be very excited about what you can learn. Here are some of the better ones:

http://www.hanselminutes.com/

http://www.dotnetrocks.com/

http://channel9.msdn.com/

http://weblogs.asp.net/scottgu/

http://weblogs.asp.net/

In addition, the MSDN library is an invaluable resource. You can almost always find what you need there. This is where the reference for the entire .NET framework lives.

http://msdn.microsoft.com/en-us/library/default.aspx

Happy hunting!

一绘本一梦想 2024-07-30 07:43:02

没有什么比实际使用该语言更好的了。 尽管已经引用的一些信息源对于查看非常有用,但我想说的是,请确保您至少尝试编写一些具体的 C#。

最好的起点可能是一个不平凡但不是太大的应用程序,您已经用您知道的东西编写了该应用程序,并尝试将其转换为 C#...如果您能找到精通 C# 的人,那就更好了同行评审您的结果,以提出建议,以便您可以更好地利用对您来说可能不熟悉的特定于语言的功能。

从根本上说,如果你只是看书和看视频,你可能会觉得你实际上知道它,但这和你自己做完全不同(正如我的大学数学课教我的那样……一个好的老师可以让不可能的事情看起来微不足道)黑板)。

Nothing beats actually using the language. As much as some of the information sources already quoted would be very useful to check out, I'd say make sure that you at least try and write some concrete C#.

The best place to start might be a non-trivial-but-not-too-large application that you have already written in something you know, and try to convert it to C#... even better if you can get somebody proficient in C# to peer-review your results to make suggestions where you could make better use of the language-specific features that may be new to you.

Fundamentally, if you just read books and watch videos, you may feel like you actually know it, but it is nothing like doing it yourself (as my Uni maths classes taught me... a good teacher can make the impossible look trivial on a blackboard).

鸢与 2024-07-30 07:43:02

那是一个巨大的表面积。 Andrew Troelsen 的 Pro C# 2008 和 .NET 3.5 Platform 是个好地方开始。

这些都是很好的播客,可以为您提供概述:

.NET Rocks

dnrTV

羊群代码

That is a huge surface area. Pro C# 2008 and the .NET 3.5 Platform by Andrew Troelsen is a good place to start.

These are good podcasts that will give you an overview:

.NET Rocks

dnrTV

Herding Code

后eg是否自 2024-07-30 07:43:02

这是一个很好的包含大量资源的线程< /a>. 我建议您查看 MSDN 虚拟实验室。 他们提供了大量出色的培训,让您能够掌握该技术,特别是,请查看 C# 的

Here's a good SO thread with lots of resources. I recommend you check out MSDN Virtual Labs. They have lots of great training that let's you get your hands on the technology, in particular, check out the C# ones.

栖迟 2024-07-30 07:43:02

2008年11月下旬我也遇到过同样的情况。
如果您熟悉 IDE 和其他编程语言,请下载 Visual Studio Express 并开始使用它。 它是免费的:)

http://www.microsoft.com/express/

我总是推荐这个网页:

http://www.java2s.com/Tutorial/CSharp/CatalogCSharp.htm< /a>

I was in the same situation in late November 2008.
If you are familiar with IDEs and another programming language, download Visual Studio Express and start playing with it. It's free :)

http://www.microsoft.com/express/

And I always recommend this webpage:

http://www.java2s.com/Tutorial/CSharp/CatalogCSharp.htm

生来就爱笑 2024-07-30 07:43:02

您可以根据标签名称在此 stackoverflow 网站上选择您感兴趣的相关主题,并阅读一些帖子,它会让您很好地了解人们在日常编程中面临的常见问题/挑战。

You can select the relative topic you are interested on this stackoverflow site based on the tag name, and read through some posts, it will give you a good feeling what are common issues/challenges people face in day-to-day programming.

烏雲後面有陽光 2024-07-30 07:43:02

一种方法是听播客。 我们做了一个名为 Deep Fried Bytes 的项目,其中包含各种主题。

One way is listening to podcasts. We do one called Deep Fried Bytes that contains a variety of topics on any and everything.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文