using
ディレクティブで書かれたファイルを完全修飾名に変換するにはどうすればよいですか?完全修飾名へのステートメントを使用したコードの変換
など。この
namespace ChatterBotAPI
{
public interface ChatterBotSession
{
ChatterBotThought Think(ChatterBotThought thought);
string Think(string text);
}
internal class PandorabotsSession : ChatterBotSession
{
private readonly System.Collections.Generic.IDictionary<string, string> vars;
public PandorabotsSession(string botid)
{
vars = new System.Collections.Generic.Dictionary<string, string>();
vars["botid"] = botid;
vars["custid"] = System.Guid.NewGuid().ToString();
}
public ChatterBotThought Think(ChatterBotThought thought)
{
...
}
実際の問題は何ですか?あなたは何を達成しようとしていますか? –
@ un-lucky私は[誰か他の図書館](https://github.com/pierredavidbelanger/chatter-bot-api)を借りて、私のプロジェクトでそれを使いたいと思っています。私のプロジェクトでは、オンザフライでC#スクリプトを実行し、 'using'ディレクティブを適切に処理しないプログラムを使用しています。したがって、完全修飾名ですべてを指定する必要があります。 – theonlygusti
@theonlygustiすべての 'using'行を削除し、各コンパイルエラーを調べ、正しい名前空間を指定します。 – Rob