Sorry, the diff of this file is not supported yet
@@ -590,67 +590,2 @@ <?xml version="1.0"?> | ||
| </member> | ||
| <member name="T:System.Index"> | ||
| <summary>Represent a type can be used to index a collection either from the start or the end.</summary> | ||
| <remarks> | ||
| Index is used by the C# compiler to support the new index syntax | ||
| <code> | ||
| int[] someArray = new int[5] { 1, 2, 3, 4, 5 } ; | ||
| int lastElement = someArray[^1]; // lastElement = 5 | ||
| </code> | ||
| </remarks> | ||
| </member> | ||
| <member name="M:System.Index.#ctor(System.Int32,System.Boolean)"> | ||
| <summary>Construct an Index using a value and indicating if the index is from the start or from the end.</summary> | ||
| <param name="value">The index value. it has to be zero or positive number.</param> | ||
| <param name="fromEnd">Indicating if the index is from the start or from the end.</param> | ||
| <remarks> | ||
| If the Index constructed from the end, index value 1 means pointing at the last element and index value 0 means pointing at beyond last element. | ||
| </remarks> | ||
| </member> | ||
| <member name="P:System.Index.Start"> | ||
| <summary>Create an Index pointing at first element.</summary> | ||
| </member> | ||
| <member name="P:System.Index.End"> | ||
| <summary>Create an Index pointing at beyond last element.</summary> | ||
| </member> | ||
| <member name="M:System.Index.FromStart(System.Int32)"> | ||
| <summary>Create an Index from the start at the position indicated by the value.</summary> | ||
| <param name="value">The index value from the start.</param> | ||
| </member> | ||
| <member name="M:System.Index.FromEnd(System.Int32)"> | ||
| <summary>Create an Index from the end at the position indicated by the value.</summary> | ||
| <param name="value">The index value from the end.</param> | ||
| </member> | ||
| <member name="P:System.Index.Value"> | ||
| <summary>Returns the index value.</summary> | ||
| </member> | ||
| <member name="P:System.Index.IsFromEnd"> | ||
| <summary>Indicates whether the index is from the start or the end.</summary> | ||
| </member> | ||
| <member name="M:System.Index.GetOffset(System.Int32)"> | ||
| <summary>Calculate the offset from the start using the giving collection length.</summary> | ||
| <param name="length">The length of the collection that the Index will be used with. length has to be a positive value</param> | ||
| <remarks> | ||
| For performance reason, we don't validate the input length parameter and the returned offset value against negative values. | ||
| we don't validate either the returned offset is greater than the input length. | ||
| It is expected Index will be used with collections which always have non negative length/count. If the returned offset is negative and | ||
| then used to index a collection will get out of range exception which will be same affect as the validation. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:System.Index.Equals(System.Object)"> | ||
| <summary>Indicates whether the current Index object is equal to another object of the same type.</summary> | ||
| <param name="value">An object to compare with this object</param> | ||
| </member> | ||
| <member name="M:System.Index.Equals(System.Index)"> | ||
| <summary>Indicates whether the current Index object is equal to another Index object.</summary> | ||
| <param name="other">An object to compare with this object</param> | ||
| </member> | ||
| <member name="M:System.Index.GetHashCode"> | ||
| <summary>Returns the hash code for this instance.</summary> | ||
| </member> | ||
| <member name="M:System.Index.op_Implicit(System.Int32)~System.Index"> | ||
| <summary>Converts integer number to an Index.</summary> | ||
| </member> | ||
| <member name="M:System.Index.ToString"> | ||
| <summary>Converts the value of the current Index object to its equivalent string representation.</summary> | ||
| </member> | ||
| <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute"> | ||
@@ -765,57 +700,3 @@ <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary> | ||
| </member> | ||
| <member name="T:System.Range"> | ||
| <summary>Represent a range has start and end indexes.</summary> | ||
| <remarks> | ||
| Range is used by the C# compiler to support the range syntax. | ||
| <code> | ||
| int[] someArray = new int[5] { 1, 2, 3, 4, 5 }; | ||
| int[] subArray1 = someArray[0..2]; // { 1, 2 } | ||
| int[] subArray2 = someArray[1..^0]; // { 2, 3, 4, 5 } | ||
| </code> | ||
| </remarks> | ||
| </member> | ||
| <member name="P:System.Range.Start"> | ||
| <summary>Represent the inclusive start index of the Range.</summary> | ||
| </member> | ||
| <member name="P:System.Range.End"> | ||
| <summary>Represent the exclusive end index of the Range.</summary> | ||
| </member> | ||
| <member name="M:System.Range.#ctor(System.Index,System.Index)"> | ||
| <summary>Construct a Range object using the start and end indexes.</summary> | ||
| <param name="start">Represent the inclusive start index of the range.</param> | ||
| <param name="end">Represent the exclusive end index of the range.</param> | ||
| </member> | ||
| <member name="M:System.Range.Equals(System.Object)"> | ||
| <summary>Indicates whether the current Range object is equal to another object of the same type.</summary> | ||
| <param name="value">An object to compare with this object</param> | ||
| </member> | ||
| <member name="M:System.Range.Equals(System.Range)"> | ||
| <summary>Indicates whether the current Range object is equal to another Range object.</summary> | ||
| <param name="other">An object to compare with this object</param> | ||
| </member> | ||
| <member name="M:System.Range.GetHashCode"> | ||
| <summary>Returns the hash code for this instance.</summary> | ||
| </member> | ||
| <member name="M:System.Range.ToString"> | ||
| <summary>Converts the value of the current Range object to its equivalent string representation.</summary> | ||
| </member> | ||
| <member name="M:System.Range.StartAt(System.Index)"> | ||
| <summary>Create a Range object starting from start index to the end of the collection.</summary> | ||
| </member> | ||
| <member name="M:System.Range.EndAt(System.Index)"> | ||
| <summary>Create a Range object starting from first element in the collection to the end Index.</summary> | ||
| </member> | ||
| <member name="P:System.Range.All"> | ||
| <summary>Create a Range object starting from first element to the end.</summary> | ||
| </member> | ||
| <member name="M:System.Range.GetOffsetAndLength(System.Int32)"> | ||
| <summary>Calculate the start offset and length of range object using a collection length.</summary> | ||
| <param name="length">The length of the collection that the range will be used with. length has to be a positive value.</param> | ||
| <remarks> | ||
| For performance reason, we don't validate the input length parameter against negative values. | ||
| It is expected Range will be used with collections which always have non negative length/count. | ||
| We validate the range is inside the length scope though. | ||
| </remarks> | ||
| </member> | ||
| </members> | ||
| </doc> |
+4
-3
@@ -5,3 +5,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <id>OpenMcdf</id> | ||
| <version>3.0.0-preview.2</version> | ||
| <version>3.0.0-preview.3</version> | ||
| <title>OpenMcdf</title> | ||
@@ -19,8 +19,9 @@ <authors>ironfede,jeremy-visionaid</authors> | ||
| <tags>MS-CFB Compound File Binary File Format Structured Storage</tags> | ||
| <repository type="git" url="https://github.com/ironfede/openmcdf" commit="1c1d53e17701ceff29e52b855a1e2f1a9577087a" /> | ||
| <repository type="git" url="https://github.com/ironfede/openmcdf" commit="40ecf3190465fa98887a6278111adf94c5b1abc6" /> | ||
| <dependencies> | ||
| <group targetFramework="net8.0" /> | ||
| <group targetFramework=".NETStandard2.0"> | ||
| <dependency id="IndexRange" version="1.0.3" exclude="Build,Analyzers" /> | ||
| <dependency id="Microsoft.Bcl.HashCode" version="6.0.0" exclude="Build,Analyzers" /> | ||
| <dependency id="System.Memory" version="4.5.5" exclude="Build,Analyzers" /> | ||
| <dependency id="System.Memory" version="4.6.0" exclude="Build,Analyzers" /> | ||
| </group> | ||
@@ -27,0 +28,0 @@ </dependencies> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet