System.Windows.Markup.ArrayExtension.AddText C# (CSharp) Method

AddText() public method

public AddText ( string text ) : void
text string
return void
		public void AddText (string text)
		{
			throw new NotImplementedException ();
		}

Usage Example

Esempio n. 1
0
		public void ProvideValueInconsistent3 ()
		{
			var x = new ArrayExtension (new int [] {1, 3});
			x.AddText ("test");
			x.ProvideValue (null);
		}
All Usage Examples Of System.Windows.Markup.ArrayExtension::AddText