Event : Visual Studio Users Community Japan #1
Date : 2019/09/14
ソフトウェア/サービス開発において最も後回しにされるものの代表が「パフォーマンスの向上」です。C#/.NET の最大の武器は開発生産性ですが、C# 7.0 以降はパフォーマンス向上のための機能追加が多数行われています。いくつかのポイントを押さえることで実装時からより高速なコードを書くことができるようになります。
このドキュメントでは、そんなポイントとなる箇所をふんだんにお届けします。
どっちの VS ショー / 伝統の Visual Studio 2019、人気の Visual Studio CodeTakashi Okawa
48 slides•472 views
Microsoft de:code 2019 のセッション番号 DT06 にてご案内した内容の補足資料です。セッション中にお見せしていないスライドもありますので、是非ご一読くださいませ!
Visual Studio 2019 と Visual Studio Code、どちらもいいところがありますので、適材適所にて、是非ご活用いただければ幸いです!
The document provides an introduction to .NET including:
- The goals of the .NET framework which include improved development, deployment, and execution.
- An overview of the .NET platform and framework including the common language runtime, base class library, and support for multiple languages.
- A brief description of C# as a managed code programming language that is part of the .NET framework.
Tips and Tricks of Developing .NET ApplicationJoni
18 slides•75 views
This document provides tips and best practices for developing .NET applications. It covers general best practices such as optimization of loops, proper object disposal, and avoiding unnecessary object instantiation. It also includes ASP.NET specific tips like disabling viewstate if not used and avoiding unnecessary round trips to the server. Windows Forms tips involve using multithreading properly and marshaling method calls to the correct thread. The document recommends using existing libraries and not reinventing functionality unnecessarily.
This document introduces HTML and its basic concepts. It covers the following topics: web standards including HTML, CSS and XML; the structure and syntax of HTML documents including tags, elements, attributes, and special characters; and some common HTML tags for text formatting, images, hyperlinks, lists, tables and more. It also discusses using color in HTML through RGB hex codes and color names.