Skip to content
This repository was archived by the owner on Mar 16, 2022. It is now read-only.
This repository was archived by the owner on Mar 16, 2022. It is now read-only.

Add Clone method to Waveform struct #111

@sean-moore3

Description

@sean-moore3

I think this would be a nifty add in:

public Waveform Clone()
{
    Waveform clone = this;
    clone.Data = Data.Clone();
    clone.BurstStartLocations = (int[])BurstStartLocations.Clone();
    clone.BurstStopLocations = (int[])BurstStopLocations.Clone();
    return clone;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions