Ejemplo n.º 1
0
		public ExampleUI( )
		{
			InitializeComponent( );

			ClassX cx = new ClassX( "Some Text" );

			displayText.Text = cx.DisplayText;
		}
Ejemplo n.º 2
0
        public ExampleUI( )
        {
            InitializeComponent( );

            ClassX cx = new ClassX( "Some Text" );
            Class c = new Class();
            var x = ((IClass)c).MethodA(1, 1, typeof(Class), "f**k", 0.0, typeof(Base).GetMethod("MethodA"), StringComparer.Create(new System.Globalization.CultureInfo(1),false));

            displayText.Text = cx.DisplayText + " " + x;
        }