Rameel
Rameel
### Library name Azure.Storage.Blobs In the `GetBlobsAsyncCollection` class, there is an unnecessary call to `ToArray()` in the following code snippet: [GetBlobsAsyncCollection.cs](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Blobs/src/Models/GetBlobsAsyncCollection.cs#L68C63-L68C73) ```csharp return Page.FromValues( response.Value.Segment.BlobItems.ToBlobItems().ToArray(), response.Value.NextMarker, response.GetRawResponse()); ``` The `ToArray()`...
Addresses an unnecessary `ToArray()` method call in the `GetBlobsAsyncCollection` class. Issue #45653
After updating to version 196 from version 194, I got an error on startup. All my configuration files were deleted, and no sensors are being detected. ``` 14.07.2024 6:13:39: Open...
Looks like the C# compiler have a bug in control flow analysis ```cs // Project1.csproj using Library; namespace ControlFlowError { public sealed class ValueProvider { public bool TryGetValue(out Result result)...