-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ static HashtagFields() | |
|
||
public HashtagFields(int data1, int data2, int data3) | ||
{ | ||
this.data = new[] { new BitVector32(data1), new BitVector32(data2), new BitVector32(data3) }; | ||
this.data = [new BitVector32(data1), new BitVector32(data2), new BitVector32(data3)]; | ||
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Release, net6.0-windows) / build
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Release, net48) / build
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Release, net8.0-windows) / build
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Debug, net8.0-windows) / build
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Debug, net8.0-windows) / build
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Debug, net48) / build
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Debug, net48) / build
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Debug, net6.0-windows) / build
Check warning on line 36 in ThScoreFileConverter/Models/Th165/HashtagFields.cs GitHub Actions / build (Debug, net6.0-windows) / build
|
||
} | ||
|
||
public IEnumerable<int> Data => this.data?.Select(vector => vector.Data) ?? Enumerable.Empty<int>(); | ||
|