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
Akkiraju Ivaturi
NA
8.7k
4.2m
Type inference a-go-go
Sep 7 2012 11:25 PM
using
System;
class
Test
{
static
void
Main()
{
Foo(
"Hello"
);
}
static
void
Foo(
object
x)
{
Console.WriteLine(
"object"
);
}
static
void
Foo<T>(
params
T[] x)
{
Console.WriteLine(
"params T[]"
);
}
}
Reply
Answers (
1
)
Will this compile?
DATE