G
Guest
Hi
In a class InfoCollection I have 2 overloads:
public virtual DataSet Update()
public virtual DataSet Update(UpdateType ut)
that I reference in the documentaion on another method
/// <summary>
/// Delete this object and removes it from the collection. Call
/// <see cref="InfoCollection.Update"/> to delete it from the
database.
/// </summary>
however I get this warning:
cref attribute 'InfoCollection.Update()' that could not be resolved
How do I reference an overloaded method ?
In a class InfoCollection I have 2 overloads:
public virtual DataSet Update()
public virtual DataSet Update(UpdateType ut)
that I reference in the documentaion on another method
/// <summary>
/// Delete this object and removes it from the collection. Call
/// <see cref="InfoCollection.Update"/> to delete it from the
database.
/// </summary>
however I get this warning:
cref attribute 'InfoCollection.Update()' that could not be resolved
How do I reference an overloaded method ?