__init__() public method

public __init__ ( [ fget, [ fset, [ fdel, [ doc ) : void
fget [
fset [
fdel [
doc [
return void
コード例 #1
0
ファイル: Descriptors.cs プロジェクト: wangpei421/ironpython2
        public PythonProperty deleter(object fdel)
        {
            PythonProperty res = new PythonProperty();

            res.__init__(_fget, _fset, fdel, _doc);
            return(res);
        }
コード例 #2
0
ファイル: Descriptors.cs プロジェクト: wangpei421/ironpython2
        public PythonProperty getter(object fget)
        {
            PythonProperty res = new PythonProperty();

            res.__init__(fget, _fset, _fdel, _doc);
            return(res);
        }
コード例 #3
0
ファイル: Descriptors.cs プロジェクト: jcteague/ironruby
 public PythonProperty deleter(object fdel) {
     PythonProperty res = new PythonProperty();
     res.__init__(_fget, _fset, fdel, _doc);
     return res;
 }
コード例 #4
0
ファイル: Descriptors.cs プロジェクト: jcteague/ironruby
 public PythonProperty getter(object fget) {
     PythonProperty res = new PythonProperty();
     res.__init__(fget, _fset, _fdel, _doc);
     return res;
 }