Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How To Create A C# Program Without Create Object Calling Method
WhatsApp
Kanimozhi M
Aug 11
2016
882
0
1
kani.ZIP
using
System;
class
usingstatic
{
public
static
void
Add()
{
int
a = 10;
int
b = 10;
int
c=a+b;
Console.WriteLine(c);
Console.ReadKey();
}
class
Demo
{
static
void
Main()
{
Add();
}
}
}
C#
Object Calling Method
Up Next
How To Create A C# Program Without Create Object Calling Method