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
Seshadri M
NA
69
17.7k
Pass value from one object to another using objectclass
Sep 19 2017 1:55 AM
I have below try sample code using objectclass.
class
general
{
int
id = 1;
string
name =
"Employee"
;
}
class
general2
{
}
class
Program
{
static
void
Main(
string
[] args)
{
general g=
new
general();
general2 h =
new
general2();
//g.Employee= h; //errror
g.Equals(h);
Console.WriteLine(g.ToString());
Console.ReadLine();
}
}
OUTPUT
//namescape
Reply
Answers (
1
)
textbox restricting spaces using c# code
APNS using PushSharp not working