Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/03/18 17:05:50 (6 years ago)
Author:
lkammere
Message:

#2886: Refactor properties to comply with .NET 4.5.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration/Symbol.cs

    r15975 r15981  
    109109    public int Count { get { return symbols.Count; } }
    110110
    111     public bool IsReadOnly => throw new NotImplementedException();
     111    public bool IsReadOnly {
     112      get { throw new NotImplementedException(); }
     113    }
    112114
    113     public Symbol this[int index] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
     115    public Symbol this[int index] {
     116      get { throw new NotImplementedException(); }
     117      set { throw new NotImplementedException(); }
     118    }
    114119
    115120    public Production(params Symbol[] symbols) {
Note: See TracChangeset for help on using the changeset viewer.