1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
//
// System.Runtime.InteropServices.DefaultCharSetAttribute
//
// Author:
// Kazuki Oikawa (kazuki@panicode.com)
//
using System;
using System.Runtime.Serialization;
namespace System.Runtime.InteropServices
{
[AttributeUsage (AttributeTargets.Module, Inherited = false)]
[ComVisible (true)]
public sealed class DefaultCharSetAttribute : Attribute
{
CharSet _set;
public DefaultCharSetAttribute (CharSet charSet)
{
_set = charSet;
}
public CharSet CharSet { get { return _set; } }
}
}
|