/// <summary>Snippet for MethodMapSignature</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MethodMapSignature()
 {
     // Create client
     SnippetsClient snippetsClient = SnippetsClient.Create();
     // Initialize request argument(s)
     IDictionary <int, string> mapIntString = new Dictionary <int, string> {
         { 0, "" },
     };
     // Make the request
     Response response = snippetsClient.MethodMapSignature(mapIntString);
 }
 /// <summary>Snippet for MethodMapSignature</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MethodMapSignatureRequestObject()
 {
     // Create client
     SnippetsClient snippetsClient = SnippetsClient.Create();
     // Initialize request argument(s)
     SignatureRequest request = new SignatureRequest
     {
         AString      = "",
         AnInt        = 0,
         ABool        = false,
         MapIntString = { { 0, "" }, },
     };
     // Make the request
     Response response = snippetsClient.MethodMapSignature(request);
 }