AvalonStudio.TextEditor.Document.TextSourceVersionProvider.Version.BelongsToSameDocumentAs C# (CSharp) Метод

BelongsToSameDocumentAs() публичный Метод

public BelongsToSameDocumentAs ( ITextSourceVersion other ) : bool
other ITextSourceVersion
Результат bool
			public bool BelongsToSameDocumentAs(ITextSourceVersion other)
			{
				var o = other as Version;
				return o != null && provider == o.provider;
			}