Changeset 9363 for branches/OaaS/HeuristicLab.Data/3.3/ValueTypeArray.cs
- Timestamp:
- 04/16/13 13:13:41 (12 years ago)
- Location:
- branches/OaaS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 23 24 packages
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/OaaS/HeuristicLab.Data/3.3/ValueTypeArray.cs
r7259 r9363 43 43 public virtual int Length { 44 44 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 { 46 48 if (ReadOnly) throw new NotSupportedException("Length cannot be set. ValueTypeArray is read-only."); 47 49 if (value != Length) { … … 50 52 } 51 53 } 54 #endregion 52 55 } 53 56 public virtual T this[int index] {
Note: See TracChangeset
for help on using the changeset viewer.