PointCollection.ToString 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 String의 PointCollection 표현을 만듭니다.
오버로드
ToString() |
이 String의 PointCollection 표현을 만듭니다. |
ToString(IFormatProvider) |
이 String의 PointCollection 표현을 만듭니다. |
ToString()
이 String의 PointCollection 표현을 만듭니다.
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
반환
이 String에 있는 X 구조체의 Y 및 Point 값이 포함된 PointCollection을 반환합니다.
예제
다음 코드 예제에서는 문자열 표현을 만드는 방법을 보여 있습니다 PointCollection.
string pcString;
// Instantiating and initializing Point structures
Point point1 = new Point(10, 10);
Point point2 = new Point(20, 20);
Point point3 = new Point(30, 30);
// Instantiating a PointCollection
PointCollection pointCollection1 = new PointCollection();
// Adding Points to PointCollection
pointCollection1.Add(point1);
pointCollection1.Add(point2);
pointCollection1.Add(point3);
// pointCollection1 is equal to (10,10 20,20 30,30)
// Getting a string representation of the PointCollection
pcString = pointCollection1.ToString();
// pcString is equal to "10,10 20,20 30,30"
Dim pcString As String
' Instantiating and initializing Point structures
Dim point1 As New Point(10, 10)
Dim point2 As New Point(20, 20)
Dim point3 As New Point(30, 30)
' Instantiating a PointCollection
Dim pointCollection1 As New PointCollection()
' Adding Points to PointCollection
pointCollection1.Add(point1)
pointCollection1.Add(point2)
pointCollection1.Add(point3)
' pointCollection1 is equal to (10,10 20,20 30,30)
' Getting a string representation of the PointCollection
pcString = pointCollection1.ToString()
' pcString is equal to "10,10 20,20 30,30"
적용 대상
ToString(IFormatProvider)
이 String의 PointCollection 표현을 만듭니다.
public:
System::String ^ ToString(IFormatProvider ^ provider);
public string ToString (IFormatProvider provider);
override this.ToString : IFormatProvider -> string
Public Function ToString (provider As IFormatProvider) As String
매개 변수
- provider
- IFormatProvider
문화권별 형식 지정 정보입니다.
반환
이 String에 있는 X 구조체의 Y 및 Point 값이 포함된 PointCollection을 반환합니다.
예제
다음 코드 예제에서는 문자열 표현 PointCollection을 가져오는 방법을 보여줍니다.
string pcString;
// Instantiating and initializing Point structures
Point point1 = new Point(10, 10);
Point point2 = new Point(20, 20);
Point point3 = new Point(30, 30);
// Instantiating a PointCollection
PointCollection pointCollection1 = new PointCollection();
// Adding Points to PointCollection
pointCollection1.Add(point1);
pointCollection1.Add(point2);
pointCollection1.Add(point3);
// pointCollection1 is equal to (10,10 20,20 30,30)
// Getting a string representation of the PointCollection
pcString = pointCollection1.ToString();
// pcString is equal to "10,10 20,20 30,30"
Dim pcString As String
' Instantiating and initializing Point structures
Dim point1 As New Point(10, 10)
Dim point2 As New Point(20, 20)
Dim point3 As New Point(30, 30)
' Instantiating a PointCollection
Dim pointCollection1 As New PointCollection()
' Adding Points to PointCollection
pointCollection1.Add(point1)
pointCollection1.Add(point2)
pointCollection1.Add(point3)
' pointCollection1 is equal to (10,10 20,20 30,30)
' Getting a string representation of the PointCollection
pcString = pointCollection1.ToString()
' pcString is equal to "10,10 20,20 30,30"