TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
dany maor
NA
31
1.4k
How do I divide this function of a linked list for 2 functions One to put data and one to print them???
Apr 3 2012 1:07 AM
using system;
using system.collections.generic;
class Program
{
static void Main()
{
LinkedList<string> linked = new LinkedList<string>();
linked.AddFirst("111");
linked.AddFirst("222");
foreach (var item in linked)
{
console.writeLine(item);
}
}
}
Reply
Answers (
2
)
Question about keyPress
Error when sending email using Outlook API