1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
// <version>$Revision: 4482 $</version>
// </file>
using System;
namespace ICSharpCode.NRefactory.PrettyPrinter
{
/// <summary>
/// Description of VBNetPrettyPrintOptions.
/// </summary>
public class VBNetPrettyPrintOptions : AbstractPrettyPrintOptions
{
/// <summary>
/// Gets/Sets if the optional "ByVal" modifier should be written.
/// </summary>
public bool OutputByValModifier { get; set; }
}
}
|