__init__() 공개 메소드

public __init__ ( [ fget, [ fset, [ fdel, [ doc ) : void
fget [
fset [
fdel [
doc [
리턴 void
예제 #1
0
        public PythonProperty deleter(object fdel)
        {
            PythonProperty res = new PythonProperty();

            res.__init__(_fget, _fset, fdel, _doc);
            return(res);
        }
예제 #2
0
        public PythonProperty getter(object fget)
        {
            PythonProperty res = new PythonProperty();

            res.__init__(fget, _fset, _fdel, _doc);
            return(res);
        }
예제 #3
0
 public PythonProperty deleter(object fdel) {
     PythonProperty res = new PythonProperty();
     res.__init__(_fget, _fset, fdel, _doc);
     return res;
 }
예제 #4
0
 public PythonProperty getter(object fget) {
     PythonProperty res = new PythonProperty();
     res.__init__(fget, _fset, _fdel, _doc);
     return res;
 }