NameObjectCollectionBase.BaseSet 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
인스턴스의 항목 NameObjectCollectionBase 값을 설정합니다.
오버로드
| Name | Description |
|---|---|
| BaseSet(Int32, Object) |
인스턴스의 지정된 인덱스에서 항목의 NameObjectCollectionBase 값을 설정합니다. |
| BaseSet(String, Object) |
인스턴스에서 지정된 키를 NameObjectCollectionBase 가진 첫 번째 항목의 값을 설정합니다(있는 경우). 그렇지 않으면 지정된 키와 값을 가진 항목을 인스턴스에 NameObjectCollectionBase 추가합니다. |
예제
다음 코드 예제에서는 특정 요소의 값을 설정 하는 데 사용 BaseSet 합니다.
using System;
using System.Collections;
using System.Collections.Specialized;
public class MyCollection : NameObjectCollectionBase {
// Gets or sets the value at the specified index.
public Object this[ int index ] {
get {
return( this.BaseGet( index ) );
}
set {
this.BaseSet( index, value );
}
}
// Gets or sets the value associated with the specified key.
public Object this[ String key ] {
get {
return( this.BaseGet( key ) );
}
set {
this.BaseSet( key, value );
}
}
// Gets a String array that contains all the keys in the collection.
public String[] AllKeys {
get {
return( this.BaseGetAllKeys() );
}
}
// Adds elements from an IDictionary into the new collection.
public MyCollection( IDictionary d ) {
foreach ( DictionaryEntry de in d ) {
this.BaseAdd( (String) de.Key, de.Value );
}
}
}
public class SamplesNameObjectCollectionBase {
public static void Main() {
// Creates and initializes a new MyCollection instance.
IDictionary d = new ListDictionary();
d.Add( "red", "apple" );
d.Add( "yellow", "banana" );
d.Add( "green", "pear" );
MyCollection myCol = new MyCollection( d );
Console.WriteLine( "Initial state of the collection:" );
PrintKeysAndValues2( myCol );
Console.WriteLine();
// Sets the value at index 1.
myCol[1] = "sunflower";
Console.WriteLine( "After setting the value at index 1:" );
PrintKeysAndValues2( myCol );
Console.WriteLine();
// Sets the value associated with the key "red".
myCol["red"] = "tulip";
Console.WriteLine( "After setting the value associated with the key \"red\":" );
PrintKeysAndValues2( myCol );
}
public static void PrintKeysAndValues2( MyCollection myCol ) {
foreach ( String s in myCol.AllKeys ) {
Console.WriteLine( "{0}, {1}", s, myCol[s] );
}
}
}
/*
This code produces the following output.
Initial state of the collection:
red, apple
yellow, banana
green, pear
After setting the value at index 1:
red, apple
yellow, sunflower
green, pear
After setting the value associated with the key "red":
red, tulip
yellow, sunflower
green, pear
*/
Imports System.Collections
Imports System.Collections.Specialized
Public Class MyCollection
Inherits NameObjectCollectionBase
' Gets or sets the value at the specified index.
Default Public Property Item(index As Integer) As [Object]
Get
Return Me.BaseGet(index)
End Get
Set
Me.BaseSet(index, value)
End Set
End Property
' Gets or sets the value associated with the specified key.
Default Public Property Item(key As [String]) As [Object]
Get
Return Me.BaseGet(key)
End Get
Set
Me.BaseSet(key, value)
End Set
End Property
' Gets a String array that contains all the keys in the collection.
Public ReadOnly Property AllKeys() As [String]()
Get
Return Me.BaseGetAllKeys()
End Get
End Property
' Adds elements from an IDictionary into the new collection.
Public Sub New(d As IDictionary)
Dim de As DictionaryEntry
For Each de In d
Me.BaseAdd(CType(de.Key, [String]), de.Value)
Next de
End Sub
End Class
Public Class SamplesNameObjectCollectionBase
Public Shared Sub Main()
' Creates and initializes a new MyCollection instance.
Dim d = New ListDictionary()
d.Add("red", "apple")
d.Add("yellow", "banana")
d.Add("green", "pear")
Dim myCol As New MyCollection(d)
Console.WriteLine("Initial state of the collection:")
PrintKeysAndValues2(myCol)
Console.WriteLine()
' Sets the value at index 1.
myCol(1) = "sunflower"
Console.WriteLine("After setting the value at index 1:")
PrintKeysAndValues2(myCol)
Console.WriteLine()
' Sets the value associated with the key "red".
myCol("red") = "tulip"
Console.WriteLine("After setting the value associated with the key ""red"":")
PrintKeysAndValues2(myCol)
End Sub
Public Shared Sub PrintKeysAndValues2(myCol As MyCollection)
Dim s As [String]
For Each s In myCol.AllKeys
Console.WriteLine("{0}, {1}", s, myCol(s))
Next s
End Sub
End Class
'This code produces the following output.
'
'Initial state of the collection:
'red, apple
'yellow, banana
'green, pear
'
'After setting the value at index 1:
'red, apple
'yellow, sunflower
'green, pear
'
'After setting the value associated with the key "red":
'red, tulip
'yellow, sunflower
'green, pear
BaseSet(Int32, Object)
인스턴스의 지정된 인덱스에서 항목의 NameObjectCollectionBase 값을 설정합니다.
protected:
void BaseSet(int index, System::Object ^ value);
protected void BaseSet(int index, object value);
member this.BaseSet : int * obj -> unit
Protected Sub BaseSet (index As Integer, value As Object)
매개 변수
- index
- Int32
설정할 항목의 인덱스(0부터 시작)입니다.
예외
컬렉션이 읽기 전용입니다.
index 가 컬렉션의 유효한 인덱스 범위를 벗어났습니다.
설명
이 메서드는 O(1) 작업입니다.
추가 정보
적용 대상
BaseSet(String, Object)
인스턴스에서 지정된 키를 NameObjectCollectionBase 가진 첫 번째 항목의 값을 설정합니다(있는 경우). 그렇지 않으면 지정된 키와 값을 가진 항목을 인스턴스에 NameObjectCollectionBase 추가합니다.
protected:
void BaseSet(System::String ^ name, System::Object ^ value);
protected void BaseSet(string name, object value);
member this.BaseSet : string * obj -> unit
Protected Sub BaseSet (name As String, value As Object)
매개 변수
예외
컬렉션이 읽기 전용입니다.
설명
컬렉션에 지정된 키를 가진 여러 항목이 포함된 경우 이 메서드는 첫 번째 항목만 설정합니다. 동일한 키를 사용하여 후속 항목의 값을 설정하려면 열거자를 사용하여 컬렉션을 반복하고 키를 비교합니다.
이 메서드는 O(1) 작업입니다.