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
Navjot Angra
NA
489
250.5k
Can I call class as string param in other class?
Aug 25 2018 10:27 AM
Suppose
public class A
{
int a=5;
void sum()
{int a=5,b=5,c;
c=a+b;
}
}
public class B
{
int b=6;
void getmethod(
string A,int a
)
{
//code
}
}
So How can i do it?
Reply
Answers (
7
)
How to protect my url with basic auth?
Can anyone suggest me some good tutorial ?