GetCanonicalPath() public method

public GetCanonicalPath ( ) : string
return string
コード例 #1
0
        public override bool Equals(object obj)
        {
            FilePath other = obj as FilePath;

            if (other == null)
            {
                return(false);
            }
            return(GetCanonicalPath() == other.GetCanonicalPath());
        }
コード例 #2
0
ファイル: T0003_BasicTest.cs プロジェクト: JamesChan/ngit
        /// <exception cref="System.IO.IOException"></exception>
        protected internal virtual void AssertEqualsPath(FilePath expected, FilePath actual
			)
        {
            NUnit.Framework.Assert.AreEqual(expected.GetCanonicalPath(), actual.GetCanonicalPath
                ());
        }
コード例 #3
0
ファイル: JsDriver.cs プロジェクト: hazzik/Rhino.Net
			public override void Running(FilePath jsFile)
			{
				try
				{
					console.Println("Running: " + jsFile.GetCanonicalPath());
					this.jsFile = jsFile;
				}
				catch (IOException e)
				{
					throw new Exception(e);
				}
			}