Microsoft MVP성태의 닷넷 이야기
List<ArrarySegment<int>> 사용법 질문드립니다! [링크 복사], [링크+제목 복사],
조회: 17496
글쓴 사람
한예지 donator
홈페이지
첨부 파일
 

선생님 안녕하세요!
using System;
using System.Collections.Generic;
public class Hello1
{
    public static void Main()
    {
        int[] array = { 10, 20, 30, 40, 50, 60, 70, 80, 90 };
        
        List<ArraySegment<int>> list = new List<ArraySegment<int>>();
        
    ArraySegment<int> segment1 = new ArraySegment<int>(array, 0, 2); // 10, 20
        ArraySegment<int> segment2 = new ArraySegment<int>(array, 4, 3); // 50, 60, 70
        
        list.Add(segment1);
        list.Add(segment2);

        for(int i = 0; i < list.Count; i++)
            Console.WriteLine(list[i]);
     }
}


[출력]
System.ArraySegment`1[System.Int32]
System.ArraySegment`1[System.Int32]

[질문 1]
저는 Array에 있는 것을 일부 떼어서 ArraySegment에 각각 옮긴 후,
이것을 list에 추가하려고 합니다.
예상 출력값을 10, 20, 50, 60, 70으로 생각했지만
알 수 없는 출력값이 보입니다...
어떻게 하면 되는지 도움 부탁드립니다!








[최초 등록일: ]
[최종 수정일: 12/23/2020]


비밀번호

댓글 작성자
 



2020-12-23 11시59분
간단하게 생각해서, 다음의 값이 "1, 2, 3"으로 나오진 않습니다.

ArraySegment<int> elems = new ArraySegment<int>(new [] { 1, 2, 3 });
Console.WriteLine(elems);

결국 지난번 했던 질문과 동일한 유형입니다.

제네릭 리스트 출력하는 방법이 궁금합니다.
; https://www.sysnet.pe.kr/3/0/5414
정성태
2022-03-05 02시30분
[bbb] class Program
    {
        static void Main(string[] args)
        {
                int[] array = { 10, 20, 30, 40, 50, 60, 70, 80, 90 };

                List<ArraySegment<int>> list = new List<ArraySegment<int>>();

                ArraySegment<int> segment1 = new ArraySegment<int>(array, 0, 2); // 10, 20
                ArraySegment<int> segment2 = new ArraySegment<int>(array, 4, 3); // 50, 60, 70

                list.Add(segment1);
                list.Add(segment2);

            for (int i = 0; i < list.Count; i++)
            {
                for(int j = 0; j < list[i].Count; j++)
                Console.WriteLine(list[i].Array[list[i].Offset+j]);
            }
        }
    }
[guest]

... 61  62  63  64  65  66  67  68  [69]  70  71  72  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
862장근배1/28/201019497AppPolId를 알 수 있는 방법이 있는지요? [1]
864장근배2/1/201019036    답변글 [답변]: AppPolId를 알 수 있는 방법이 있는지요?
858생초보1/26/201019398안녕하세요.. 파일 생성 처리 문제로 .... [2]
857꼭지1/22/201026190How to support Basic + Windows authentication mode in WCF(RESTful service) [4]파일 다운로드2
856질의자1/13/201023031vcredist_x86 배포 관련 여쭙습니다. [1]
855임동찬1/13/201021903이벤트 핸들러와 쓰레드의 관계 2 [4]파일 다운로드2
854임동찬1/12/201022092이벤트 핸들러와 쓰레드의 관계 [1]
853장근배1/12/201020702압축 프로그램,, [1]
852임동찬1/6/201018064base.OnStart(agrs) [1]
851한귀순1/6/201023444oracle & transaction 질문 [5]
850박한주12/31/200920682COM과 C#간 권한 문제에 관해 여쭤봅니다. [5]
848날쌘돌이12/22/200921718C#으로 개발하는 ActiveX 디버깅 문제 [5]
847최승문12/16/200920474winform에서 웹서비스를 이용할때, 객체가 전송안되는 문제... [2]
846이강구12/14/200919379ATL COM 제작 문의 [3]
845김재영12/9/200922202ClickOnce에서 WinForm을 배포시 변동되는 Args값을 넘길 수 있나요? [3]파일 다운로드1
843김재영12/2/200919762Hyper-V 사용에 대해여 질문이 있습니다. [2]
842한귀순12/1/200922572Attempted to read or write protected memory [2]
841장근배11/30/200924417첨부 파일 Download시 한글 Name [2]
844장근배12/3/200918836    답변글 [답변]: 첨부 파일 Download시 한글 Name파일 다운로드1
840박영민11/20/200918824웹 애플리케이션 질문입니다. [1]
837left...10/21/200919423아래 게시글 관련하여 추가 질문 [3]
836left...10/19/200920308ActiveX 상에서 암시적 dll 로드 [1]
832김우진10/15/200916846C# 에서 swa + security 구현 방법이 없을까요?
833정성태10/15/200921257    답변글 [답변]: C#에서 swa + security 구현 방법이 없을까요? [1]
834김우진10/15/200917266        답변글 예제 메시지 올려드릴께요. [2]파일 다운로드1
838이영우10/30/200917122            답변글 국세청 전자세금계선서에 관하여 문의드립니다.
... 61  62  63  64  65  66  67  68  [69]  70  71  72  73  74  75  ...