BalloonsPop.GraphicUserInterface.Resources.Resources C# (CSharp) Method

Resources() public method

Initializes a new instance of the Resources class.
public Resources ( ) : System
return System
        public Resources()
        {
            int indexOfExecutionFolderName = Environment.CurrentDirectory.IndexOf(ExectutionFolderName);
            var imagesDir = Environment.CurrentDirectory.Substring(0, indexOfExecutionFolderName);
            sourcePathTemplate = imagesDir + "Images\\{0}.png";
        }
Resources