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);