5
votes
2answers
1k views
Quickest way to convert a base 10 number to any base in .NET?
I have and old(ish) C# method I wrote that takes a number and converts it to any base:
string ConvertToBase(int number, char[] baseChars);
It's not all that super speedy and nea …
5
votes
6answers
411 views
Is there any built-in way to convert an integer to a string (of any base) in C#?
Convert.ToString() only allows base values of 2, 8, 10, and 16 for some odd reason; is there some obscure way of providing any base between 2 and 16?
3
votes
6answers
395 views
Fastest base conversion method?
Right now I'm working on a project which requires an integer to be converted to a base 62 string many times a second. The faster this conversion is completed, the better.
The prob …
3
votes
3answers
233 views
base_convert in .NET
Does .NET have a native function that is equivalent to PHP's base_convert or will I need to write my own? I want to convert from any base to any other base -- where either the 'to' …
2
votes
2answers
92 views
Base Class Library
I am new to C#, C++ and .Net.
I am currently returning to programming from a stint in Networking and Cisco engineering. I used to program on IBM mainframes etc using Cobol, assemb …
2
votes
6answers
1k views
Forward Declaration of a Base Class
Hello, I'm trying to create proper header files that don't include much other files.
(To keep them clean, to speed up compiling time, ...)
I encountered two problems while doing t …
2
votes
6answers
1k views
How do I inherit subroutines in Perl with ‘use base’?
How do I apply 'use base' in Perl to inherit subs from some base module?
I'm used to C++ inheritance mechanics, and all the sites I googled for this caused more confusion then hel …
2
votes
6answers
539 views
What’s your best trick to break out of an unbalanced quote condition in BASE SAS?
As a base SAS programmer, you know the drill:
You submit your SAS code, which contains an unbalanced quote, so now you've got not only and unclosed quote, but also unclosed commen …
1
vote
4answers
88 views
Cast concrete class to generic base interface
Here's the scenario i am faced with:
public abstract class Record { }
public abstract class TableRecord : Record { }
public abstract class LookupTableRecord : TableRecord { }
p …
1
vote
2answers
56 views
Why can’t Flash CS3 find the MovieClip base class even after classpath is set (AS3)?
Tearing my hair out.
I created an as3 class - blah.Foo, which extends MovieClip.
it is not in a package, cos Flash CS3 complained about nested packages, so it's a 'bare' class.
An …
1
vote
2answers
30 views
How to get modified file from base file and diff file ?
Consider the following example :
$ls
base.txt base-modified.txt
$diff base.txt base-modified.txt > diff.txt
$rm base-modified.txt
$
I want the base-modified.txt from base.txt …
1
vote
3answers
123 views
How do I determine an image url string is without a base domain through javascript?
I'm capturing data from an external url using php and throwing it back to my page via ajax to load images. My problem is the external url have some images that are relative("images …
1
vote
6answers
626 views
How to convert an arbitrary large integer from base 10 to base 16?
The program requires an input of an arbitrary large unsigned integer which is expressed as one string in base 10. The outputs is another string that expresses the integer in base 1 …
1
vote
0answers
920 views
Android BaseAdapter : position not really the position?
I am so confused when my list view using a BaseAdapter goes off the screen, each row no longer maintains a consecutive position. I don't know how else to explain it other than this …
1
vote
3answers
970 views
Inheriting a Linq to SQL class and cast the result of a linq query
I am writing an application where we will need to extend a basic entity into a number of different things (eg employee, vehicle etc). The design is as such that there is a Entity …
