in
tri
home of the trivadians

Nach Ordnungsbegriffen durchsuchen

  • Refactoring C# Series: Use Automatic Property

    Name Use Automatic Property Summary You have a property in a class which just wraps a field of the same type, and simply returns or sets that field. private string _field1; public string Field1 { get { return _field1; } set { _field1 = value; } } Becomes: public string Field1 { get; set; } C# Version...
    Erstellt in Richard's blog (Weblog) von Anonymous am 12-27-2007
Seite 1 von 1 (1 Treffer)
/