예제 #1
0
 /// <summary>
 /// Initializes the static fields of <see cref="WindowsIOManager"/>
 /// </summary>
 static WindowsIOManager()
 {
     Instance = new WindowsIOManager();
 }
예제 #2
0
 /// <summary>
 /// Initializes the static fields of <see cref="DesktopIOManager"/>
 /// </summary>
 static DesktopIOManager()
 {
     Instance = new DesktopIOManager();
 }
예제 #3
0
 /// <summary>
 /// Set I/O manager implementation to use for file/directory reference initialization.
 /// </summary>
 /// <param name="impl">I/O manager implementation to use.</param>
 public static void SetImplementation(IOManager impl)
 {
     implementation = impl;
 }