/// <summary> /// Builds an implementation of the interface for the server. /// </summary> /// <typeparam name="T">The interface for which remote calls will be filled.</typeparam> /// <returns></returns> private static void BuildServerImplementationFromInterface <T>(T instance, string pipeName) where T : class { ServerProxy.Wrap <T>(instance, pipeName); }