Skip to content

Tracking: parsing delegates API. #17

@SingleAccretion

Description

@SingleAccretion

Definition

  • TryParse<T>:
public delegate bool TryParse<T>(string value, out T result);
  • TryParseSpan<T>:
public delegate bool TryParseSpan<T>(ReadOnlySpan<char> span, out T result);
  • Parse<T>:
public delegate T Parse<T>(string value);
  • ParseSpan<T>:
public delegate T ParseSpan<T>(ReadOnlySpan<char> span);

Implementation

  • TryParse<T>
  • TryParseSpan<T>
  • Parse<T>
  • ParseSpan<T>

XML documentation

  • TryParse<T>
  • TryParseSpan<T>
  • Parse<T>
  • ParseSpan<T>

Proper documentation

  • TryParse<T>
  • TryParseSpan<T>
  • Parse<T>
  • ParseSpan<T>

Metadata

Metadata

Assignees

No one assigned

    Labels

    TrackingWork items related to the addition of new APIs or other improvements

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions