2017-11-13 17 views
0

.NETのスクリプトをWonderware Archestra IDEに使用しています。これは正常に動作します:StringReaderの文字列を引数として使用する

dim SR as System.IO.StringReader; 
SR = new System.IO.StringReader(OPCClient_L09.Valve.AliasDatabase); 

しかし、私はこのように必要な、それが動作していない:

dim SR as System.IO.StringReader; 
dim Input as String; 
Input = "OPCClient_L09.Valve.AliasDatabase"; 
SR = new System.IO.StringReader(Input); 

答えて

1

あなたはワンダー文字列型である文字列型を、宣言しました。 StringReaderはSystem.String(つまり.NETタイプ)を想定しています。

が可能System.Stringにあなたの文字列の宣言を変更

dim SR as System.IO.StringReader; 
dim Input as System.String; 
Input = "OPCClient_L09.Valve.AliasDatabase"; 
SR = new System.IO.StringReader(Input); 
関連する問題