Last active
September 3, 2017 09:43
-
-
Save listopad/91d439ea034961272887928421d4312a to your computer and use it in GitHub Desktop.
This file contains 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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
public class ListFiller : MonoBehaviour | |
{ | |
void Awake () | |
{ | |
var list = Enumerable.Range (0, 10).OrderBy (x => Guid.NewGuid ()).Take (5); | |
foreach (int i in list) Debug.Log (i); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment