Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
ConcurrentQueue<T>
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; namespace Rextester { public class Program { public static void Main(string[] args) { ConcurrentQueue<int> queue = new ConcurrentQueue<int>(); queue.Enqueue(42); int result; if (queue.TryDequeue(out result)) Console.WriteLine("Dequeued: {0}", result); } } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
MyGenerics
ConvertDotNetGuidToOracleGuid
Sum of digit using recursion
c# integers
Par ou ímpar
EVEN AND ODD
Get Bytecent Price in $USD
Math 10.9 edited makeMultQ
Hei
Readonly
Please log in to post a comment.