Is using Stacks (the data collection class) allowed in Silverlight? I have used Stacks in my WPF c# application. But Visual Studio complains when I declare a Stack in my Silverlight APP. I need to use this class. Is there a substitute?
1 Replies - 5539 Views - Last Post: 28 October 2011 - 03:58 AM
#1
Is using Stacks (the data collection class) allowed in Silverlight?
Posted 28 October 2011 - 01:35 AM
Replies To: Is using Stacks (the data collection class) allowed in Silverlight?
#2
Re: Is using Stacks (the data collection class) allowed in Silverlight?
Posted 28 October 2011 - 03:58 AM
In System.Collections.Generic namespace there is a generic Stack class.
vb: Dim x As New System.Collections.Generic.Stack(Of Object)() C#: System.Collections.Generic.Stack<object> x = new System.Collections.Generic.Stack<object>();
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote




|