Click here to Skip to main content
15,888,221 members
Articles / Programming Languages / C#

Gios PDF .NET library

Rate me:
Please Sign up or sign in to vote.
4.89/5 (157 votes)
18 Apr 2005LGPL32 min read 2.2M   13.1K   558  
A .NET library for generating impressive PDF reports.
using System;

namespace SmartPdf
{
	/// <summary>
	/// 
	/// </summary>
	internal sealed class General
	{
		internal General()
		{
			// 
			// TODO: Add constructor logic here
			//
		}
		private static int _nextid=0;
		public static int GetNextId
		{
			get
			{
				_nextid++;
				return _nextid;
			}
		}
		public static int PagesRoot;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Web Developer
Italy Italy
Freelance software ASPNET / C# Software Developer

I live in Torino, Italy

my homepage is: http://www.paologios.com

Comments and Discussions