forked from KolibriOS/kolibrios
e9b1c1bac6
git-svn-id: svn://kolibrios.org@6725 a494cfbc-eb01-0410-851d-a64ba20cac60
43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
#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;}
|
|
}
|
|
}
|
|
}
|