BudgetAnalyser.Engine.UnitTest.TestHarness.XamlOnDiskApplicationDatabaseRepositoryTestHarness.LoadXamlAsString C# (CSharp) 메소드

LoadXamlAsString() 보호된 메소드

protected LoadXamlAsString ( string fileName ) : string
fileName string
리턴 string
        protected override string LoadXamlAsString(string fileName)
        {
            StorageRootDtoSerialised = GetType().Assembly.ExtractEmbeddedResourceAsText(fileName, true);
            StorageRootDto = XamlServices.Parse(StorageRootDtoSerialised) as BudgetAnalyserStorageRoot;
            return StorageRootDtoSerialised;
        }
    }