Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion libEDSsharp/eds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -333,18 +333,18 @@
/// </summary>
public partial class InfoSection
{
protected Dictionary<string, string> section;

Check warning on line 336 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.section'

protected string infoheader;

Check warning on line 338 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.infoheader'
protected string edssection;

Check warning on line 339 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.edssection'

public enum Filetype

Check warning on line 341 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.Filetype'
{
File_EDS,

Check warning on line 343 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.Filetype.File_EDS'
File_DCF

Check warning on line 344 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.Filetype.File_DCF'
}

public bool GetField(string name, string varname)

Check warning on line 347 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.GetField(string, string)'
{
FieldInfo f = null;

Expand Down Expand Up @@ -1133,7 +1133,6 @@
public ODentry(string parameter_name,UInt16 index, byte nosubindex)
{
this.parameter_name = parameter_name;
this.objecttype = ObjectType.ARRAY;
this.Index = index;
//this.nosubindexes = nosubindex;
this.objecttype = ObjectType.VAR;
Expand Down
Loading