Widgetsphere.Generator.MockProxy.ProjectItemGenerators.EventArgs.EventArgsExtenderTemplate.GenerateContent C# (CSharp) Method

GenerateContent() private method

private GenerateContent ( ) : void
return void
		private void GenerateContent()
		{
			try
			{
				Widgetsphere.Generator.GenerationHelper.AppendCopyrightInCode(sb, _model);
				this.AppendUsingStatements();
				sb.AppendLine("namespace " + this.GetLocalNamespace() + ".EventArgs");
				sb.AppendLine("{");
				this.AppendClass();
				sb.AppendLine("}");
			}
			catch (Exception ex)
			{
				throw;
			}
		}