use MOONLIGHT symbol
[mcs.git] / nunit24 / NUnitFramework / framework / SetCultureAttribute.cs
blob45dfb652c36c865569c604c78574afb5937b9e3c
1 using System;
3 namespace NUnit.Framework
5 /// <summary>
6 /// Summary description for SetCultureAttribute.
7 /// </summary>
8 [AttributeUsage(AttributeTargets.Class|AttributeTargets.Method|AttributeTargets.Assembly, AllowMultiple=true)]
9 public class SetCultureAttribute : PropertyAttribute
11 /// <summary>
12 /// Construct given the name of a culture
13 /// </summary>
14 /// <param name="culture"></param>
15 public SetCultureAttribute( string culture ) : base( "_SETCULTURE", culture ) { }