by Rick Miller | 7 Apr 2022 | Technical Writing
Adobe FrameMaker is a powerful content creation platform used by technical writing professionals the world over to create complex technical documents including multi-volume books and other complex documents. I personally use FrameMaker to create and publish...
by Rick Miller | 7 Apr 2022 | Technical Writing
Adobe FrameMaker is a content creation platform specifically geared towards the creation and publication of complex technical documents. Before writing one word, however, you need to give thought about the physical organization of the book. Physical organization...
by Rick Miller | 8 Mar 2022 | General, Tech Smarts
Inexperienced website developers, which includes just about every do-it-yourselfer, will often create, build, and deploy their public-facing website right off the bat. There’s nothing wrong with this per se, but sooner or later the need will arise to run the...
by Rick Miller | 22 Jan 2022 | C#.NET, Programming Languages, Software Architecture, Software Design
In this post I present the two types of polymorphism supported by C#: Static and Dynamic Polymorphism. C#’s language features including inheritance, abstract base classes, interfaces, virtual methods, method overriding, method overloading, operator overloading, and...
by Rick Miller | 29 Jul 2017 | C#.NET, Programming Languages
What Is A Method? A method is a block of code this is accessible by name. All statements executed within a C# program run within the context of a method. Every C# program needs, at the very least, one method named Main(). (The name of the method is “Main” but I...