|
Perhaps, but I do find it to be a convenient place to put methods that can be implemented entirely in terms of the rest of the interface.
|
|
|
|
|
BillWoodruff wrote: an abstract class
That wouldn't work for struct s, since they can't have a base class (other than ValueType /Object ).
IIRC, the primary use-case for static members was to allow mathematical operations on generic types. And the vast majority of types you're going to want to use that on will be structs.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
i'm afraid i missed how 'structs came up, here.
«The mind is not a vessel to be filled but a fire to be kindled» Plutarch
|
|
|
|
|
Generic math - .NET | Microsoft Learn[^]
The majority of types you'd want to perform mathematical operations on are struct s. And you can't have an abstract base class for a struct.
Also, as far as static members go, an abstract base class still wouldn't help; you can't "override" a static member from your base class.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Sometimes using an interface makes more sense than using abstract base classes (the good old "I am" or "I can" discussion). And some of these interfaces where of course defined in nuget packages.
This means to add a method or property, you would have to either rename the interface and support both for a while, or you would force anyone who use your nuget package to reimplement the interface. Doable when users only have only a few nuget packages, and the runtime will guard you against a newer version of a package than you expect.
However with the way a lot of software is structured today it does not work anymore. Projects use a lot of nuget packages, and they have internal dependencies meaning updating one nuget package could lead to a chain reaction of having to update others... and sometimes there just was not a way of getting all of them compatible. Basically DLL hell was replaced... by NuGet hell.
Allowing interfaces to add methods/properties and remain backwards compatible makes it easier to write code that will survive when running with newer version of one or another 4th level dependent nuget package than it was written against.
|
|
|
|
|
I am following the online C# tutorials here: create class and objects.
I cannot get the code to envoke the class to create an object. I have some Python knowledge but am learning C#. I am using VS 2022 community edition and running on Windows 10.
I will post the code below but what happens is the Console.WriteLine("Hello, World!"); executes but not the attempt to envoke the class.
I am guessing the code should work like this:
1. C# executable looks for
static void Main(string[] args)
2. Within this main module is the statement:
Person person = new Person();
This line should create an object person.
3. The following lines should assign values to the person object's attributes
person.Name = "Daniel";
person.Age = 28;
person.Haspet = true;
4. The line :
person.Greeting();
should cause the class to be called:
public void Greeting()
{
Console.WriteLine("Within Greeting method. Name is:" + Name +" age is:"+ Age);
Console.ReadLine();
}
but this code does not execute. What am I am getting wrong?
Code:
Console.WriteLine("Hello, World!");
namespace crltemp
{
public class Person
{
public string Name;
public int Age;
public bool Haspet;
public void Greeting()
{
Console.WriteLine("Within Greeting method. Name is:" + Name + " age is:" + Age);
Console.ReadLine();
}
}
class Program
{
static void Main(string[] args)
{
Person person = new Person();
person.Name = "Daniel";
person.Age = 28;
person.Haspet = true;
person.Greeting();
}
}
}
|
|
|
|
|
Quote:
Console.WriteLine("Hello, World!");
namespace crltemp
{
... You've created a project using the new Top-level statements[^] syntax, and forgotten to remove the boilerplate.
As a result, the compiler will generate an entry-point for you which will simply write "Hello, World!" to the console and then exit. The additional Main method in your Program class will never be called.
Remove the code outside of your namespace, and your code should start behaving as expected.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Thanks for your very swift reply to a very basic question. Removing the top-level statement meant the compiled program ran as intended.
|
|
|
|
|
Yet another example of Hutber's Law.
|
|
|
|
|
"Hutber's Law". No idea what that meant. Looked it up. Still no idea what it means. I think I've been insulted but I don't know. Play nice.
|
|
|
|
|
My reply was for Richard Deeming, rather than you. But I was alluding to the fact that Microsoft has changed the templates so you don't need to put the main method in a C# Console app, which confuses people because most of the tutorials that you can find will have been created before this "feature" was introduced. And for the record (not an insult to you) Hutber's law - Wikipedia[^].
|
|
|
|
|
They should never have added that "feature" ...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I have to extract payment data from PDD's. Some have just one or two lines I need, and other have rows and columns of data.
What's the best way to extract this data using C#?
In theory, theory and practice are the same. But in practice, they never are.”
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
|
|
|
|
|
Kevin, you've been here long enough; asked enough questions already to know that that's far too vague a query to get anything practical in terms of an answer - all we can do is generically direct you to something like NuGet Gallery | iTextSharp 5.5.13.3[^] and suggest you start there!
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I was hoping for "I've used...." or "Try this api" kind of answers. I don't have enough info to give more detail because I don't know where to start
In theory, theory and practice are the same. But in practice, they never are.”
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
|
|
|
|
|
Most people don't use PDFs to transfer data between applications of any kind, so the pool of people who could answer that question is exceedingly small, like none of the regulars around here would have done it.
|
|
|
|
|
If it's a pdf of an image, there's no text either.
There is no "general" solution.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
I know what you mean, but ... as Dave says PDF is not a data transfer format, it's a user presentation format.
Using it to transfer computer readable info is like using Word to send a bitmap in an email - you could probably do it, but anyone who saw what you were doing would be wondering "what fool came up with *that* idea?"
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Ya I hear ya. My client has Invices in PDF format that need data extracted. I found https://docs.apryse.com/which looks promising.
In theory, theory and practice are the same. But in practice, they never are.”
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
|
|
|
|
|
I guess it depends on where the PDF's originate: if it's a single company and they will guarantee to never, ever, ever change the format in writing signed in blood I might give it consideration - but invoices? I can see so many ways in which that could go seriously wrong and somebody end up in jail for tax evasion ... I'd probably decline to quote on that job myself.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Yes. Should be using EDI ... or "something".
EDI 810 Invoice: Transactions, Format & Specifications | Astera
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
In some businesses (especially insurance), it was common to use PDFs for data capture purposes. This would then be transferred over to companies to process this and convert the data contained inside into something that could be used in the office.
|
|
|
|
|
Yes, if I remember correctly PDF has a Forms mode which limits what users can enter and where?
But you wouldn't use that for invoices!
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I've seen this used for something akin to invoices in the past. That's how the commercial insurance industry operates; they do love their PDFs.
|
|
|
|
|
I've used Ghostscript to parse PDF files before. You don't even need to write any code, just use the precompiled tools.
ghostscript extract PDF text
They have a C# wrapper but I've never used it.
|
|
|
|