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
anti virus
NA
17
3.5k
assigning to array
Dec 14 2018 2:16 PM
want to assing array of int types values 10; 15; 20; 25 to marks array thats what i have done so far
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp15
{
class Program
{
static void Main(string[] args)
{
int[] marks;
for (int i = 0; i < marks.Length; i++)
{
Console.Write(marks[i] + " ");
}
}
}
}
Reply
Answers (
2
)
splitting string into array of strings
return value from a method