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
What will be displayed, why, and how confident are you?
Sep 7 2012 11:19 PM
using
System;
class
Foo
{
static
Foo()
{
Console.WriteLine (
"Foo"
);
}
}
class
Bar
{
static
int
i = Init();
static
int
Init()
{
Console.WriteLine(
"Bar"
);
return
0;
}
}
class
Test
{
static
void
Main()
{
Foo f =
new
Foo();
Bar b =
new
Bar();
}
}
Reply
Answers (
1
)
Overloading
Silly arithmetic