Microsoft.CSharp.CSharpCodeProvider
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Sample {
using System;
using System.Collections.Generic;
public class Foo {
private System.Collections.Generic.KeyValuePair<int, string>[] Bar = new System.Collections.Generic.KeyValuePair<int, string>[] {
new System.Collections.Generic.KeyValuePair<int, string>(-21, "ab")};
}
}
Microsoft.VisualBasic.VBCodeProvider
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict Off
Option Explicit On
Imports System
Imports System.Collections.Generic
Namespace Sample
Public Class Foo
Private Bar() As System.Collections.Generic.KeyValuePair(Of Integer, String) = New System.Collections.Generic.KeyValuePair(Of Integer, String)() {New System.Collections.Generic.KeyValuePair(Of Integer, String)(-21, "ab")}
End Class
End Namespace