UsonWriter.WriteStartConstructor C# (CSharp) Method

WriteStartConstructor() public method

public WriteStartConstructor ( string name ) : void
name string
return void
	public override void WriteStartConstructor(string name)
	{
		throw new NotSupportedException();
	}

Usage Example

Ejemplo n.º 1
0
        public void WhenWritingStartConstructor_ThenThrowsNotSupported()
        {
            var writer = new UsonWriter(new StringWriter());

            Assert.Throws <NotSupportedException>(() => writer.WriteStartConstructor("foo"));
        }
All Usage Examples Of UsonWriter::WriteStartConstructor