FixedLengthString クラス

定義

注意事項

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

Visual Basic 6.0 の固定長文字列の動作をエミュレートします。

public ref class FixedLengthString
public class FixedLengthString
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public class FixedLengthString
type FixedLengthString = class
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
type FixedLengthString = class
Public Class FixedLengthString
継承
FixedLengthString
属性

次の例では、 を宣言して使用する方法を FixedLengthString示します。

Private Sub DemoFixedLengthString()  
    ' Declare a string that has a length of 7 characters and assign the
    ' initial string. The additional 5 positions will be padded with  
    ' spaces.  
    Dim fixedString As New FixedLengthString(7, "He")  
    ' Display the string in a message box.  
    MsgBox(fixedString.ToString)  
    ' Assign a new value to the string.  
    fixedString.Value = "Hello World"  
    ' Display again. Note that only the first 7 characters are shown.  
    MsgBox(fixedString.ToString)  
End Sub  

注釈

Visual Basic 6.0 では、 を String 固定長で宣言できます。 Visual Basic では、固定長文字列はサポートされなくなり、 のString長さが変更されるたびに新しい String 文字列が割り当てられます。

クラスを FixedLengthString 使用すると、Visual Basic 6.0 文字列の動作をエミュレートできます。これにより、固定長の文字列を宣言できます。 FixedLengthStringを に変換することはできません。型をString変換するには、 プロパティをValue参照するか、 メソッドをToString呼び出す必要があります。

注意

Microsoft.VisualBasic.Compatibility.VB6 名前空間の関数とオブジェクトは、Visual Basic 6.0 から Visual Basic 2008 へのアップグレード ツールで使用するために用意されています。 ほとんどの場合、これらの関数とオブジェクトは、.NET Framework の他の名前空間にある機能と重複しています。 これらが必要になるのは、Visual Basic 6.0 のコード モデルが .NET Framework の実装と大きく異なる場合だけです。

コンストラクター

FixedLengthString(Int32)
古い.

長さを指定して、FixedLengthString クラスの新しいインスタンスを初期化します。

FixedLengthString(Int32, String)
古い.

長さおよび初期値を指定して、FixedLengthString クラスの新しいインスタンスを初期化します。

フィールド

m_nMaxChars
古い.

FixedLengthString の長さを格納します。

m_strValue
古い.

FixedLengthString の値を格納します。

プロパティ

Value
古い.

FixedLengthString のコンテンツを取得または設定します。

メソッド

Equals(Object)
古い.

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetHashCode()
古い.

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()
古い.

現在のインスタンスの Type を取得します。

(継承元 Object)
MemberwiseClone()
古い.

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()
古い.

FixedLengthStringStringに変換します。

適用対象