Thanks to visit codestin.com
Credit goes to github.com

Skip to content

How to check a PyObject for None in C#? #869

Closed
@henon

Description

@henon

How to check an object returned from Python against None?

I can't find a good way to do it. This is my workaround which is very unsatisfying.

                var type = pyobj.__class__.ToString();
                if (type== "<class 'NoneType'>")
                    return null;

A simple pyobj.IsNone would be cool. What am I missing?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions