コード例 #1
0
ファイル: ShellSession.cs プロジェクト: jbatonnet/bedrock
 public AutoCompletion(string text, string result, AutoCompletionType type, string description)
 {
     Text        = text;
     Result      = result;
     Type        = type;
     Description = description;
 }
コード例 #2
0
 public AutoCompletionItem(string text, string insertText, string description, AutoCompletionType type)
 {
     _text = text;
     _insertText = insertText;
     _desc = description;
     _type = type;
 }
コード例 #3
0
ファイル: ShellSession.cs プロジェクト: jbatonnet/bedrock
 public AutoCompletion(string text, string result, AutoCompletionType type)
 {
     Text   = text;
     Result = result;
     Type   = type;
 }