タグ

ブックマーク / learn.microsoft.com (7)

  • Guidelines for progress controls - Windows apps

    A progress control provides feedback to the user that a long-running operation is underway. It can mean that the user cannot interact with the app when the progress indicator is visible, and can also indicate how long the wait time might be, depending on the indicator used. Types of progress There are two controls to show the user that an operation is underway – either through a ProgressBar or thr

    Guidelines for progress controls - Windows apps
    gin0606
    gin0606 2014/08/28
  • クラスまたは構造体の選択 - Framework Design Guidelines

    Note このコンテンツは、Pearson Education, Inc. の許可を得て、『Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries, 2nd Edition (フレームワーク設計ガイドライン: 再利用可能な .NET ライブラリの規約、表現形式、およびパターン、第 2 版)』から転載されています。 この版は 2008 年に出版され、その後、このは第 3 版で全面的に改訂されました。 このページの情報の一部は以前のものである可能性があります。 すべてのフレームワーク デザイナーが直面する基的な設計上の判断の 1 つは、型をクラスとして設計するか (参照型)、構造体として設計するか (値型) ということです。 この選択を行うには、参照型と値型の動作の

    クラスまたは構造体の選択 - Framework Design Guidelines
    gin0606
    gin0606 2012/11/20
    "クラスまたは構造体の選択"
  • .NET アプリケーションのパフォーマンスとスケーラビリティの向上 - 第 5 章 「マネージ コ ード パフォーマンスの向上」

    Recommendations on how to design and develop custom applications using the Microsoft platform Each patterns & practices offering contains a combination of written documentation and re-usable source code. Many also include a reference implementation. As the guidance is being developed it is reviewed and approved by internal Microsoft product teams and by external customers and partners. This produc

    .NET アプリケーションのパフォーマンスとスケーラビリティの向上 - 第 5 章 「マネージ コ ード パフォーマンスの向上」
    gin0606
    gin0606 2012/10/16
    ".NET アプリケーションのパフォーマンスとスケーラビリティの向上 - 第 13 章 「コードレビュー: .NET アプリケーション パフォーマンス」"
  • out (C#)

    out キーワードを使用すると、引数が参照渡しされます。このキーワードは ref キーワードに似ていますが、ref の場合は、変数を初期化してから渡す必要があります。out パラメータを使用するには、メソッド定義と呼び出し元のメソッドの両方で out キーワードを明示的に使用する必要があります。次に例を示します。 class OutExample { static void Method(out int i) { i = 44; } static void Main() { int value; Method(out value); // value is now 44 } } out 引数として渡す変数は、渡す前に初期化する必要がありませんが、呼び出し元のメソッドでは、メソッドから制御が戻る前に値を代入する必要があります。 ref キーワードと out キーワードの取り扱い方は、実行時は

    out (C#)
    gin0606
    gin0606 2012/10/05
    out キーワードを使用すると、引数が参照渡しされます。このキーワードは ref キーワードに似ていますが、ref の場合は、変数を初期化してから渡す必要があります。"out (C#)"
  • String.Empty フィールド (System)

    名前空間: System アセンブリ:System.Runtime.dll アセンブリ:mscorlib.dll アセンブリ:netstandard.dll ソース:String.cs ソース:String.cs ソース:String.cs 重要 一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。

    String.Empty フィールド (System)
    gin0606
    gin0606 2012/10/01
    "String.Empty フィールド (System)"
  • String クラス (System)

    名前空間: System アセンブリ:System.Runtime.dll アセンブリ:mscorlib.dll アセンブリ:netstandard.dll ソース:String.cs ソース:String.cs ソース:String.cs 重要 一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。 public ref class System::String sealed : IComparable, IComparable<System::String ^>, IConvertible, IEquatable<System::String ^>, System::Collections::Generic::IEnumerable<char>

    String クラス (System)
    gin0606
    gin0606 2012/10/01
    "String メンバ (System)"
  • サンプル コード集 C# 10 行コードで作る .NET アプリケーション 10 行でズバリ !! | Code Recipe | MSDN

    このブラウザーはサポートされなくなりました。 Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。

    サンプル コード集 C# 10 行コードで作る .NET アプリケーション 10 行でズバリ !! | Code Recipe | MSDN
    gin0606
    gin0606 2012/08/05
    "サンプル コード集 C# 10行コードで作る .NET アプリケーション 10 行でズバリ !! | Code Recipe | MSDN"
  • 1