コード例 #1
0
ファイル: EditorIntegration.cs プロジェクト: habbes/odata-lab
            public NotificationActivator(EditorIntegration editorIntegration, string filePath)
            {
                Contract.Assert(editorIntegration != null);
                Contract.Assert(filePath != null);

                _editorIntegration = editorIntegration;
                _filePath          = filePath;
            }
コード例 #2
0
ファイル: EditorIntegration.cs プロジェクト: haxard/lab
            public NotificationActivator(EditorIntegration editorIntegration, string filePath)
            {
                Contract.Assert(editorIntegration != null);
                Contract.Assert(filePath != null);

                _editorIntegration = editorIntegration;
                _filePath = filePath;
            }
コード例 #3
0
ファイル: VisualStudioIntegration.cs プロジェクト: TomDu/lab
 public VisualStudioIntegration()
 {
     Editor = new EditorIntegration(this);
 }
コード例 #4
0
 public VisualStudioIntegration()
 {
     Editor = new EditorIntegration(this);
 }