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
Nils Gustavsson
NA
5
17.6k
Merge multidimensional array
Nov 4 2010 5:48 AM
I have two arrays (eut1 and eut2) that are rather large and i want to merge them to create a new one containing one after the other. I create the new array but i dont know how to assign eut1 and eut2 to the anglesEut so they end up after each other.
public
void
setgetAnglesEut(
float
[,] eut1,
float
[,] eut2)
{
this
.anglesEut =
new
float
[eut1.GetLength(0) + eut2.GetLength(0), eut2.GetLength(1)];
this
.anglesEut = eut1;
// when anglesEut is assigned eut1 it also gets its dimentions. How do i add eut2 efter eut1.
// eut1 and eut 2 have the following dimentions
// Eut1 {float[3, 4096]}
// anglesEut {float[6, 4096]}
}
Reply
Answers (
5
)
Winform Child form
How can I pass ArrayList as a command Line argument to a c# program?