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
Maha
NA
0
323.9k
Why not executing?
Sep 5 2013 2:02 PM
Why following program is not executing?
using System;
class Program
{
static void Main()
{
int[] intA = {1,2,3,4,5};
string[] stringA = {"aa","bb","cc" };
A(intA);
A(stringA);
Console.ReadKey();
}
static void A(object[] x)
{
foreach (object item in x)
{
Console.WriteLine(item);
}
}
}
Reply
Answers (
8
)
select query for three joined table?
FET in C#