Created
January 8, 2019 15:28
-
-
Save MartinZikmund/582f61fbb5dac720dee9856992813cde to your computer and use it in GitHub Desktop.
Array fill in .NET Core 2.0 and newer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var data = new bool[1000]; | |
Array.Fill(data, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment