Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6724 → Rev 6725

/programs/fs/unzip60/windll/csharp/UnZipDLLPrintMessageEventArgs.cs
0,0 → 1,42
#region README
 
//_____________________________________________________________________________
//
//Sample C# code, .NET Framework 1.1, contributed to the Info-Zip project by
//Adrian Maull, April 2005.
//
//If you have questions or comments, contact me at adrian.maull@sprintpcs.com. Though
//I will try to respond to coments/questions, I do not guarantee such response.
//
//THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
//KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
//IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
//PARTICULAR PURPOSE.
//
//_____________________________________________________________________________
 
 
#endregion
 
using System;
 
namespace CSharpInfoZip_UnZipSample
{
/// <summary>
/// Summary description for UnZipDLLPrintMessageEventArgs.
/// </summary>
public class UnZipDLLPrintMessageEventArgs : EventArgs
{
private string m_PrintMessage = string.Empty;
 
public UnZipDLLPrintMessageEventArgs(string msg)
{
m_PrintMessage = msg;
}
 
public string PrintMessage
{
get {return m_PrintMessage;}
}
}
}