Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# interface properties

public interface ISampleInterface
{
    // Property declaration:
    string Name
    {
        get;
        set;
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #interface #properties
ADD COMMENT
Topic
Name
1+4 =