Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/06/12 11:35:59 (12 years ago)
Author:
ascheibe
Message:

#1937

  • fixed wrong assembly references in project files
  • fixed cases of file names
  • removed an InvokeRequired check that Mono couldn't handle
  • changed visibility of inherited setters so that the Mono compiler doesn't crash
  • specified the namespace of the Random class so that Mono doesn't confuses it with our Random class
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3/ValueTypeArray.cs

    r7259 r8587  
    4343    public virtual int Length {
    4444      get { return array.Length; }
    45       protected set {
     45      #region Mono Compatibility
     46      // this setter should be protected, but the Mono compiler couldn't handle it
     47      set {
    4648        if (ReadOnly) throw new NotSupportedException("Length cannot be set. ValueTypeArray is read-only.");
    4749        if (value != Length) {
     
    5052        }
    5153      }
     54      #endregion
    5255    }
    5356    public virtual T this[int index] {
Note: See TracChangeset for help on using the changeset viewer.