File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -176,23 +176,20 @@ public static Polyline FromMemory(ReadOnlyMemory<char> polyline) {
176176 /// </summary>
177177 /// <param name="polyline">The Unicode character array to convert.</param>
178178 /// <returns>The converted <see cref="Polyline"/> instance.</returns>
179- [ ExcludeFromCodeCoverage ]
180179 public static explicit operator Polyline ( char [ ] polyline ) => FromCharArray ( polyline ) ;
181180
182181 /// <summary>
183182 /// Defines an explicit conversion from a string to a <see cref="Polyline"/>.
184183 /// </summary>
185184 /// <param name="polyline">The string to convert.</param>
186185 /// <returns>The converted <see cref="Polyline"/> instance.</returns>
187- [ ExcludeFromCodeCoverage ]
188186 public static explicit operator Polyline ( string polyline ) => FromString ( polyline ) ;
189187
190188 /// <summary>
191189 /// Defines an explicit conversion from a read-only memory region to a <see cref="Polyline"/>.
192190 /// </summary>
193191 /// <param name="polyline">The read-only memory region to convert.</param>
194192 /// <returns>The converted <see cref="Polyline"/> instance.</returns>
195- [ ExcludeFromCodeCoverage ]
196193#pragma warning disable CA2225 // Operator overloads have named alternates
197194 public static explicit operator Polyline ( ReadOnlyMemory < char > polyline ) => FromMemory ( polyline ) ;
198195#pragma warning restore CA2225 // Operator overloads have named alternates
You can’t perform that action at this time.
0 commit comments