Skip to content

CSharp:Attributes

클래스나 메서드, 멤버변수 선언 직전에 사용되는 [Serializable]와 같은 것들.

Example

[Serializable]
public class SampleClass
{
    // Objects of this type can be serialized.
}

See also

Favorite site