This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Messaging; | |
namespace MyProject | |
{ | |
/// <summary> | |
/// Provides a container class for the example. | |
/// </summary> | |
public class MyNewQueue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class WcfGen | |
{ | |
private static string contractName; | |
private static string operationName; | |
private static Type clientProxyType; | |
private static CodeDomProvider codeDomProvider; | |
private static CompilerResults results; | |
private static Uri mexAddress; |
OlderNewer