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
Sandeep Banerjee
NA
249
264k
please solve this question
Mar 13 2015 11:50 PM
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class Program
{
static void Main()
{
Console.Write("Enter first value:");
SomeClass sc1 = new SomeClass(int.Parse(Console.ReadLine()));
Console.Write("Enter second value:");
SomeClass sc2 = new SomeClass(int.Parse(Console.ReadLine()));
sc1 += sc2;
Console.WriteLine("New value of someclass:{0}", sc1.ToString());
}
}
public class SomeClass
{
//write your code here
//
}
Reply
Answers (
2
)
Sir how to make a int class in c#
Working with listbox in C#