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
Mohammed Rafi Khan
NA
349
34.5k
what possible in static class and not in non-static class C#
Dec 8 2019 8:29 AM
what possible in a static class and not in non-static class or vice versa in C#, for example
static class
MyProgram.CallFunction();
non-static class
MyProgram obj =new MyProgram();
obj.CallFunction();
in the above example without creating the instance we can able to call static class members so this is basic.
I'm looking for a difference which is possible and not possible in static and non-static
Reply
Answers (
4
)
Is it possible to convert a date type to a numeric type in c
Can static class can have only default Constructor ?