| 12345678910111213141516171819202122232425262728 |
- //
- // System.Runtime.InteropServices.ProgIdAttribute.cs
- //
- // Name: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- //
- using System;
- namespace System.Runtime.InteropServices {
- [AttributeUsage (AttributeTargets.Class)]
- public sealed class ProgIdAttribute : Attribute
- {
- string pid;
-
- public ProgIdAttribute (string progId)
- {
- pid = progId;
- }
- public string Value {
- get { return pid; }
- }
- }
- }
|